WALA/com.ibm.wala.cast.js.test.data/examples-src/tests/with.js

9 lines
136 B
JavaScript
Executable File

function im_with_stupid(stupid, x) {
with (stupid) {
return x+3;
}
}
var foo = new Object();
var bar = im_with_stupid(foo, 7);