blob: c6d3555d71c45c75c106758c885573a9e264590e (
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);
this.toSource();
function testTypedArrayOther() {
var ar = new Int32Array;
for (; i < ar; ++i) {
ar[i] = i;
}
for (var i = 0; i<40; i++) {
}
}
testTypedArrayOther();
|