blob: 3e177e406ad72995454b8bd3083a9f71f0502af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function makeExpectedMatch(arr) {
expectedMatch = {
x: arr.length
}
}
var expected = makeExpectedMatch(new Int32Array);
JSON.stringify(this);
function testTypedArrayOther() {
var ar = new Int32Array;
for (; i < ar; ++i) {
ar[i] = i;
}
for (var i = 0; i<40; i++) {
}
}
testTypedArrayOther();
|