bug862100.js (465B)
1 function TestCase(n, d, e, a) {} 2 function reportCompare (expected, actual, description) { 3 new TestCase("", description, expected, actual); 4 } 5 new TestCase( "", "", 0, Number(new Number()) ); 6 reportCompare(true, true); 7 evaluate("\ 8 function TestCase(n, d, e, a) {}\ 9 test_negation(-2147483648, 2147483648);\ 10 test_negation(2147483647, -2147483647);\ 11 function test_negation(value, expected) {\ 12 reportCompare(expected, '', '-(' + value + ') == ' + expected);\ 13 }");