summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug845331.js
blob: 177b801c5acb0719a8f941a0d627b5a51a5bed8a (plain)
1
2
3
4
5
6
7
8
9
function TestCase(n, d, e, a) {};
function reportCompare (expected, actual) {
    var testcase = new TestCase("unknown-test-name", null, expected, actual);
}
reportCompare();
var b = eval(uneval((TestCase)));
reportCompare(true, true);
expect = actual = ''
reportCompare(expect, actual);