From 14047ca4328bf55630fa2c01bfcdfd06ed6975ad Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 28 Mar 2020 17:23:54 +0100 Subject: LibJS: Add a global "Object" constructor This patch adds an "Object" constructor to the global object. The only function it implements so far is Object.getPrototypeOf(). --- Libraries/LibJS/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Libraries/LibJS/Makefile') diff --git a/Libraries/LibJS/Makefile b/Libraries/LibJS/Makefile index 97d35be52d..ad85857e3f 100644 --- a/Libraries/LibJS/Makefile +++ b/Libraries/LibJS/Makefile @@ -19,6 +19,7 @@ OBJS = \ Runtime/NativeFunction.o \ Runtime/NativeProperty.o \ Runtime/Object.o \ + Runtime/ObjectConstructor.o \ Runtime/ObjectPrototype.o \ Runtime/PrimitiveString.o \ Runtime/ScriptFunction.o \ -- cgit v1.2.3