diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-28 17:23:54 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-28 17:23:54 +0100 |
commit | 14047ca4328bf55630fa2c01bfcdfd06ed6975ad (patch) | |
tree | b26e110e2fcd6d4257e391c957ba856258b454f7 /Libraries/LibJS/Makefile | |
parent | a3d92b1210bad42a7563b6a7d9a8787d6d2586ed (diff) | |
download | serenity-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/Makefile | 1 |
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 \ |