Source code

Revision control

Copy as Markdown

Other Tools

// Compiled
function TestCase(a) { }
// Not compiled (try)
function reportCompare (actual) {
TestCase(actual);
try { } catch(ex) { }
}
// Compiled
function addThis(bound) {
actualvalues[bound] = undefined + actual;
reportCompare(actualvalues[bound]);
}
var actual = '';
var actualvalues = [];
addThis(0);
actual = NaN;
addThis(1);