summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-04 22:28:21 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-04 22:28:21 +0200
commitd155491122ba8c4b9e7e6a52ff075811b1897abb (patch)
tree2f3ad672bac4ad0d4a1dc8d59c0d68f63c017ee6 /Libraries/LibJS/Makefile
parenteabdbe0ee9d025891fc9e0c532bde433b857bbad (diff)
downloadserenity-d155491122ba8c4b9e7e6a52ff075811b1897abb.zip
LibJS: Add basic Array constructor
We only support Array() with 0 or 1 parameters so far.
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 ff059321fb..ef9514d9b3 100644
--- a/Libraries/LibJS/Makefile
+++ b/Libraries/LibJS/Makefile
@@ -7,6 +7,7 @@ OBJS = \
Lexer.o \
Parser.o \
Runtime/Array.o \
+ Runtime/ArrayConstructor.o \
Runtime/ArrayPrototype.o \
Runtime/Cell.o \
Runtime/ConsoleObject.o \