Searched refs:getBigInt64 (Results 1 – 12 of 12) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | bigintWithoutLib.types | 334 bigintVal = dataView.getBigInt64(1); 335 >bigintVal = dataView.getBigInt64(1) : any 337 >dataView.getBigInt64(1) : any 338 >dataView.getBigInt64 : any 340 >getBigInt64 : any 343 bigintVal = dataView.getBigInt64(1, true); 344 >bigintVal = dataView.getBigInt64(1, true) : any 346 >dataView.getBigInt64(1, true) : any 347 >dataView.getBigInt64 : any 349 >getBigInt64 : any
|
D | bigintWithoutLib.js | 50 bigintVal = dataView.getBigInt64(1); 51 bigintVal = dataView.getBigInt64(1, true); 105 bigintVal = dataView.getBigInt64(1); 106 bigintVal = dataView.getBigInt64(1, true);
|
D | bigintWithLib.js | 48 bigintVal = dataView.getBigInt64(1); 49 bigintVal = dataView.getBigInt64(1, true); 108 bigintVal = dataView.getBigInt64(1); 109 bigintVal = dataView.getBigInt64(1, true);
|
D | bigintWithLib.types | 332 bigintVal = dataView.getBigInt64(1); 333 >bigintVal = dataView.getBigInt64(1) : bigint 335 >dataView.getBigInt64(1) : bigint 336 >dataView.getBigInt64 : (byteOffset: number, littleEndian?: boolean) => bigint 338 >getBigInt64 : (byteOffset: number, littleEndian?: boolean) => bigint 341 bigintVal = dataView.getBigInt64(1, true); 342 >bigintVal = dataView.getBigInt64(1, true) : bigint 344 >dataView.getBigInt64(1, true) : bigint 345 >dataView.getBigInt64 : (byteOffset: number, littleEndian?: boolean) => bigint 347 >getBigInt64 : (byteOffset: number, littleEndian?: boolean) => bigint
|
D | bigintWithLib.symbols | 204 bigintVal = dataView.getBigInt64(1); 206 >dataView.getBigInt64 : Symbol(DataView.getBigInt64, Decl(lib.es2020.bigint.d.ts, --, --)) 208 >getBigInt64 : Symbol(DataView.getBigInt64, Decl(lib.es2020.bigint.d.ts, --, --)) 210 bigintVal = dataView.getBigInt64(1, true); 212 >dataView.getBigInt64 : Symbol(DataView.getBigInt64, Decl(lib.es2020.bigint.d.ts, --, --)) 214 >getBigInt64 : Symbol(DataView.getBigInt64, Decl(lib.es2020.bigint.d.ts, --, --))
|
D | bigintWithoutLib.errors.txt | 45 tests/cases/compiler/bigintWithoutLib.ts(49,22): error TS2550: Property 'getBigInt64' does not exis… 46 tests/cases/compiler/bigintWithoutLib.ts(50,22): error TS2550: Property 'getBigInt64' does not exis… 195 bigintVal = dataView.getBigInt64(1); 197 !!! error TS2550: Property 'getBigInt64' does not exist on type 'DataView'. Do you need to change y… 198 bigintVal = dataView.getBigInt64(1, true); 200 !!! error TS2550: Property 'getBigInt64' does not exist on type 'DataView'. Do you need to change y…
|
D | bigintWithLib.errors.txt | 109 bigintVal = dataView.getBigInt64(1); 110 bigintVal = dataView.getBigInt64(1, true);
|
D | bigintWithoutLib.symbols | 160 bigintVal = dataView.getBigInt64(1); 164 bigintVal = dataView.getBigInt64(1, true);
|
/third_party/typescript/tests/cases/compiler/ |
D | bigintWithoutLib.ts | 51 bigintVal = dataView.getBigInt64(1); 52 bigintVal = dataView.getBigInt64(1, true);
|
D | bigintWithLib.ts | 50 bigintVal = dataView.getBigInt64(1); 51 bigintVal = dataView.getBigInt64(1, true);
|
/third_party/typescript/src/lib/ |
D | es2020.bigint.d.ts | 675 getBigInt64(byteOffset: number, littleEndian?: boolean): bigint; method
|
/third_party/typescript/lib/ |
D | lib.es2020.bigint.d.ts | 695 getBigInt64(byteOffset: number, littleEndian?: boolean): bigint; method
|