summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-20 20:29:57 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-20 21:56:40 +0100
commita82f64d3d6fbf333e796e56952481190b9b1eb72 (patch)
tree471ad4641fdd59afddb0efc3f61a940cea72d27e /Libraries/LibJS/Makefile
parent0891f860f7127185b63d6e7ff67430b03e8ed287 (diff)
downloadserenity-a82f64d3d6fbf333e796e56952481190b9b1eb72.zip
LibJS: Parse ArrayExpression and start implementing Array objects
Note that property lookup is not functional yet.
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 084a2155fe..cf1ef690f8 100644
--- a/Libraries/LibJS/Makefile
+++ b/Libraries/LibJS/Makefile
@@ -6,6 +6,7 @@ OBJS = \
Interpreter.o \
Lexer.o \
Parser.o \
+ Runtime/Array.o \
Runtime/Cell.o \
Runtime/ConsoleObject.o \
Runtime/Function.o \