michael@0: function testInt(n, result) { michael@0: var x = 0; michael@0: for (var i = 0; i < 15; i++) { michael@0: if (x % 2 == 0) michael@0: x = 10; michael@0: else michael@0: x %= 0; michael@0: } michael@0: for (var i = 0; i < 15; i++) { } michael@0: } michael@0: testInt(2147483647, 2147483647); michael@0: testInt(-2147483648, -2147483648);