diff options
author | bellard <6490144+bellard@users.noreply.github.com> | 2023-12-04 19:26:32 +0100 |
---|---|---|
committer | bellard <6490144+bellard@users.noreply.github.com> | 2023-12-04 19:26:32 +0100 |
commit | 94010edb5794b06e122cfb9ea6ed9c6be9db6c03 (patch) | |
tree | eb95989dbda7189d31c6152633365302cfdcf70c /quickjs-atom.h | |
parent | 03cc5ecc88f8534a5db5c911df4b712a21d08fb8 (diff) | |
download | quickjs-94010edb5794b06e122cfb9ea6ed9c6be9db6c03.tar.gz quickjs-94010edb5794b06e122cfb9ea6ed9c6be9db6c03.zip |
the BigInt support is now always included
Diffstat (limited to 'quickjs-atom.h')
-rw-r--r-- | quickjs-atom.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/quickjs-atom.h b/quickjs-atom.h index 4c22794..81c65b9 100644 --- a/quickjs-atom.h +++ b/quickjs-atom.h @@ -169,8 +169,8 @@ DEF(groups, "groups") DEF(status, "status") DEF(reason, "reason") DEF(globalThis, "globalThis") -#ifdef CONFIG_BIGNUM DEF(bigint, "bigint") +#ifdef CONFIG_BIGNUM DEF(bigfloat, "bigfloat") DEF(bigdecimal, "bigdecimal") DEF(roundingMode, "roundingMode") @@ -209,15 +209,13 @@ DEF(Int16Array, "Int16Array") DEF(Uint16Array, "Uint16Array") DEF(Int32Array, "Int32Array") DEF(Uint32Array, "Uint32Array") -#ifdef CONFIG_BIGNUM DEF(BigInt64Array, "BigInt64Array") DEF(BigUint64Array, "BigUint64Array") -#endif DEF(Float32Array, "Float32Array") DEF(Float64Array, "Float64Array") DEF(DataView, "DataView") -#ifdef CONFIG_BIGNUM DEF(BigInt, "BigInt") +#ifdef CONFIG_BIGNUM DEF(BigFloat, "BigFloat") DEF(BigFloatEnv, "BigFloatEnv") DEF(BigDecimal, "BigDecimal") |