Name Description Size Coverage
arithmetic.js --- esid: sec-bigint.asintn description: BigInt.asIntN arithmetic test cases info: | BigInt.asIntN ( bits, bigint ) 3. Let mod be a BigInt representing bigint modulo 2**bits. 4. If mod ≥ 2**bits - 1, return mod - 2**bits; otherwise, return mod. features: [BigInt] --- 2882 -
asIntN.js --- esid: sec-bigint.asintn description: BigInt.asIntN property descriptor info: | BigInt.asIntN ( bits, bigint ) 17 ECMAScript Standard Built-in Objects includes: [propertyHelper.js] features: [BigInt] --- 496 -
bigint-tobigint-errors.js --- description: BigInt.asIntN type coercion for bigint parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 2. Let bigint ? ToBigInt(bigint). features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] --- 5079 -
bigint-tobigint-toprimitive.js --- description: BigInt.asIntN type coercion for bigint parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 2. Let bigint ? ToBigInt(bigint). features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] --- 4431 -
bigint-tobigint-wrapped-values.js --- description: BigInt.asIntN type coercion for bigint parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 2. Let bigint ? ToBigInt(bigint). features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] --- 1858 -
bigint-tobigint.js --- description: BigInt.asIntN type coercion for bigint parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 2. Let bigint ? ToBigInt(bigint). features: [BigInt] --- 2833 -
bits-toindex-errors.js --- description: BigInt.asIntN type coercion for bits parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 1. Let bits be ? ToIndex(bits). features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] --- 2718 -
bits-toindex-toprimitive.js --- description: BigInt.asIntN type coercion for bits parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 1. Let bits be ? ToIndex(bits). features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] --- 4440 -
bits-toindex-wrapped-values.js --- description: BigInt.asIntN type coercion for bits parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 1. Let bits be ? ToIndex(bits). features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] --- 3194 -
bits-toindex.js --- description: BigInt.asIntN type coercion for bits parameter esid: sec-bigint.asintn info: | BigInt.asIntN ( bits, bigint ) 1. Let bits be ? ToIndex(bits). features: [BigInt] --- 1984 -
length.js --- esid: sec-bigint.asintn description: BigInt.asIntN.length descriptor info: | BigInt.asIntN ( bits, bigint ) 17 ECMAScript Standard Built-in Objects includes: [propertyHelper.js] features: [BigInt] --- 461 -
name.js --- esid: sec-bigint.asintn description: BigInt.asIntN.name descriptor info: | BigInt.asIntN ( bits, bigint ) 17 ECMAScript Standard Built-in Objects includes: [propertyHelper.js] features: [BigInt] --- 464 -
not-a-constructor.js --- esid: sec-ecmascript-standard-built-in-objects description: > BigInt.asIntN does not implement [[Construct]], is not new-able info: | ECMAScript Function Objects Built-in function objects that are not identified as constructors do not implement the [[Construct]] internal method unless otherwise specified in the description of a particular function. sec-evaluatenew ... 7. If IsConstructor(constructor) is false, throw a TypeError exception. ... includes: [isConstructor.js] features: [Reflect.construct, BigInt, arrow-function] --- 863 -
order-of-steps.js --- esid: sec-bigint.asintn description: BigInt.asIntN order of parameter type coercion info: | BigInt.asIntN ( bits, bigint ) 1. Let bits be ? ToIndex(bits). 2. Let bigint ? ToBigInt(bigint). features: [BigInt] --- 593 -