summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/TypedObject/jit-read-int.js
blob: 1463d44244b1c5902c0bc521b64fae76ca63df5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if (!this.hasOwnProperty("TypedObject"))
  quit();

var PointType = new TypedObject.StructType({x: TypedObject.uint32,
                                            y: TypedObject.uint32,
                                            z: TypedObject.uint32});

function foo() {
  for (var i = 0; i < 30000; i += 3) {
    var pt = new PointType({x: i, y: i+1, z: i+2});
    var sum = pt.x + pt.y + pt.z;
    assertEq(sum, 3*i + 3);
  }
}

foo();