@@ -20,7 +20,6 @@ tests/cases/compiler/bigintWithLib.ts(31,35): error TS2769: No overload matches
20
20
Argument of type 'number[]' is not assignable to parameter of type 'Iterable<bigint>'.
21
21
Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array', gave the following error.
22
22
Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
23
- Type 'number[]' is not assignable to type 'SharedArrayBuffer'.
24
23
tests/cases/compiler/bigintWithLib.ts(36,13): error TS2540: Cannot assign to 'length' because it is a read-only property.
25
24
tests/cases/compiler/bigintWithLib.ts(43,25): error TS2345: Argument of type 'number' is not assignable to parameter of type 'bigint'.
26
25
tests/cases/compiler/bigintWithLib.ts(46,26): error TS2345: Argument of type 'number' is not assignable to parameter of type 'bigint'.
@@ -84,7 +83,6 @@ tests/cases/compiler/bigintWithLib.ts(46,26): error TS2345: Argument of type 'nu
84
83
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'Iterable<bigint>'.
85
84
!!! error TS2769: Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array', gave the following error.
86
85
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
87
- !!! error TS2769: Type 'number[]' is not assignable to type 'SharedArrayBuffer'.
88
86
bigUintArray = new BigUint64Array(new ArrayBuffer(80));
89
87
bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8);
90
88
bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3);
0 commit comments