diff options
author | Andreas Kling <kling@serenityos.org> | 2020-04-04 23:13:13 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-04 23:13:13 +0200 |
commit | 3a026a1edefe23c265ebe4f28883154169d5b6a1 (patch) | |
tree | 01231a383eb5efe2fa3db772c350963c46139798 /Libraries/LibJS/Makefile | |
parent | d4dfe7e5253229ccbdfb3a4fcc7911bbde49342f (diff) | |
download | serenity-3a026a1edefe23c265ebe4f28883154169d5b6a1.zip |
LibJS: Add NumberObject and make to_object() on number values create it
Diffstat (limited to 'Libraries/LibJS/Makefile')
-rw-r--r-- | Libraries/LibJS/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Libraries/LibJS/Makefile b/Libraries/LibJS/Makefile index ef9514d9b3..611cfdefcd 100644 --- a/Libraries/LibJS/Makefile +++ b/Libraries/LibJS/Makefile @@ -25,6 +25,8 @@ OBJS = \ Runtime/MathObject.o \ Runtime/NativeFunction.o \ Runtime/NativeProperty.o \ + Runtime/NumberObject.o \ + Runtime/NumberPrototype.o \ Runtime/Object.o \ Runtime/ObjectConstructor.o \ Runtime/ObjectPrototype.o \ |