diff options
author | Jack Karamanian <karamanian.jack@gmail.com> | 2020-04-06 22:51:16 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-07 08:41:25 +0200 |
commit | edae926cb01cee1a110ac52052346bcf3649d07c (patch) | |
tree | 9139622f572ade2c80fef2d073309cebdf10b0d4 /Libraries/LibJS/Makefile | |
parent | 57bd194e5a11ae6bc8477eb976fb7d2c1e10ac35 (diff) | |
download | serenity-edae926cb01cee1a110ac52052346bcf3649d07c.zip |
LibJS: Add Boolean constructor object
Diffstat (limited to 'Libraries/LibJS/Makefile')
-rw-r--r-- | Libraries/LibJS/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibJS/Makefile b/Libraries/LibJS/Makefile index 611cfdefcd..75352c9742 100644 --- a/Libraries/LibJS/Makefile +++ b/Libraries/LibJS/Makefile @@ -9,6 +9,9 @@ OBJS = \ Runtime/Array.o \ Runtime/ArrayConstructor.o \ Runtime/ArrayPrototype.o \ + Runtime/BooleanConstructor.o \ + Runtime/BooleanObject.o \ + Runtime/BooleanPrototype.o \ Runtime/Cell.o \ Runtime/ConsoleObject.o \ Runtime/Date.o \ |