diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-20 20:29:57 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-20 21:56:40 +0100 |
commit | a82f64d3d6fbf333e796e56952481190b9b1eb72 (patch) | |
tree | 471ad4641fdd59afddb0efc3f61a940cea72d27e /Libraries/LibJS/Makefile | |
parent | 0891f860f7127185b63d6e7ff67430b03e8ed287 (diff) | |
download | serenity-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/Makefile | 1 |
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 \ |