Skip to content

Commit fc79114

Browse files
committed
Add failing test for typed array completions
1 parent e0528c0 commit fc79114

File tree

2 files changed

+1023
-0
lines changed

2 files changed

+1023
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
let bigInt64Array = BigInt64Array.fromLength(0)
2+
// bigInt64Array.
3+
// ^com
4+
5+
let bigUint64Array = BigUint64Array.fromLength(0)
6+
// bigUint64Array.
7+
// ^com
8+
9+
let float32Array = Float32Array.fromLength(0)
10+
// float32Array.
11+
// ^com
12+
13+
let float64Array = Float64Array.fromLength(0)
14+
// float64Array.
15+
// ^com
16+
17+
let int16Array = Int16Array.fromLength(0)
18+
// int16Array.
19+
// ^com
20+
21+
let int32Array = Int32Array.fromLength(0)
22+
// int32Array.
23+
// ^com
24+
25+
let int8Array = Int8Array.fromLength(0)
26+
// int8Array.
27+
// ^com
28+
29+
let uint16Array = Uint16Array.fromLength(0)
30+
// uint16Array.
31+
// ^com
32+
33+
let uint32Array = Uint32Array.fromLength(0)
34+
// uint32Array.
35+
// ^com
36+
37+
let uint8Array = Uint8Array.fromLength(0)
38+
// uint8Array.
39+
// ^com
40+
41+
let uint8ClampedArray = Uint8ClampedArray.fromLength(0)
42+
// uint8ClampedArray.
43+
// ^com

0 commit comments

Comments
 (0)