summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-28 17:23:54 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-28 17:23:54 +0100
commit14047ca4328bf55630fa2c01bfcdfd06ed6975ad (patch)
treeb26e110e2fcd6d4257e391c957ba856258b454f7 /Libraries/LibJS/Makefile
parenta3d92b1210bad42a7563b6a7d9a8787d6d2586ed (diff)
downloadserenity-14047ca4328bf55630fa2c01bfcdfd06ed6975ad.zip
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().
Diffstat (limited to 'Libraries/LibJS/Makefile')
-rw-r--r--Libraries/LibJS/Makefile1
1 files changed, 1 insertions, 0 deletions
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 \