1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:17:35 +00:00

LibJS: Add NumberObject and make to_object() on number values create it

This commit is contained in:
Andreas Kling 2020-04-04 23:13:13 +02:00
parent d4dfe7e525
commit 3a026a1ede
8 changed files with 184 additions and 0 deletions

View file

@ -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 \