Home
last modified time | relevance | path

Searched refs:asIntN (Results 1 – 13 of 13) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DbigintWithoutLib.types23 bigintVal = BigInt.asIntN(8, 0xFFFFn);
24 >bigintVal = BigInt.asIntN(8, 0xFFFFn) : any
26 >BigInt.asIntN(8, 0xFFFFn) : any
27 >BigInt.asIntN : any
29 >asIntN : any
DbigintWithoutLib.js8 bigintVal = BigInt.asIntN(8, 0xFFFFn);
66 bigintVal = BigInt.asIntN(8, 0xffffn);
DbigintWithLib.js6 bigintVal = BigInt.asIntN(8, 0xFFFFn);
69 bigintVal = BigInt.asIntN(8, 0xffffn);
DbigintWithLib.types21 bigintVal = BigInt.asIntN(8, 0xFFFFn);
22 >bigintVal = BigInt.asIntN(8, 0xFFFFn) : bigint
24 >BigInt.asIntN(8, 0xFFFFn) : bigint
25 >BigInt.asIntN : (bits: number, int: bigint) => bigint
27 >asIntN : (bits: number, int: bigint) => bigint
DbigintWithLib.symbols14 bigintVal = BigInt.asIntN(8, 0xFFFFn);
16 >BigInt.asIntN : Symbol(BigIntConstructor.asIntN, Decl(lib.es2020.bigint.d.ts, --, --))
18 >asIntN : Symbol(BigIntConstructor.asIntN, Decl(lib.es2020.bigint.d.ts, --, --))
DbigintWithLib.errors.txt35 bigintVal = BigInt.asIntN(8, 0xFFFFn);
DbigintWithoutLib.symbols12 bigintVal = BigInt.asIntN(8, 0xFFFFn);
DbigintWithoutLib.errors.txt67 bigintVal = BigInt.asIntN(8, 0xFFFFn);
/third_party/typescript/tests/cases/compiler/
DbigintWithoutLib.ts9 bigintVal = BigInt.asIntN(8, 0xFFFFn);
DbigintWithLib.ts8 bigintVal = BigInt.asIntN(8, 0xFFFFn);
/third_party/typescript/lib/
Dlib.es2020.bigint.d.ts135 asIntN(bits: number, int: bigint): bigint; method
/third_party/typescript/src/lib/
Des2020.bigint.d.ts115 asIntN(bits: number, int: bigint): bigint; method
/third_party/node/typings/
Dprimordials.d.ts157 export const BigIntAsIntN: typeof BigInt.asIntN