Source code
Revision control
Copy as Markdown
Other Tools
what = 0;
function f(x) {
g(x);
}
function g(x) {
eval("what = true");
}
f(10);
assertEq(what, true);
what = 0;
function f(x) {
g(x);
}
function g(x) {
eval("what = true");
}
f(10);
assertEq(what, true);