mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:47:45 +00:00
LibJS: Add BigInt
This commit is contained in:
parent
40829b849a
commit
0ff9d7e189
32 changed files with 1910 additions and 636 deletions
|
@ -28,6 +28,7 @@
|
|||
|
||||
#define JS_ENUMERATE_NATIVE_OBJECTS \
|
||||
__JS_ENUMERATE(Array, array, ArrayPrototype, ArrayConstructor) \
|
||||
__JS_ENUMERATE(BigIntObject, bigint, BigIntPrototype, BigIntConstructor) \
|
||||
__JS_ENUMERATE(BooleanObject, boolean, BooleanPrototype, BooleanConstructor) \
|
||||
__JS_ENUMERATE(Date, date, DatePrototype, DateConstructor) \
|
||||
__JS_ENUMERATE(Error, error, ErrorPrototype, ErrorConstructor) \
|
||||
|
@ -55,6 +56,7 @@
|
|||
namespace JS {
|
||||
|
||||
class ASTNode;
|
||||
class BigInt;
|
||||
class BoundFunction;
|
||||
class Cell;
|
||||
class DeferGC;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue