aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/expresso/deps/jscoverage/tests/javascript/javascript-with.js
blob: 58fd1acc865290cdd187a116be8a2848c7e1707c (plain)
1
2
3
4
5
6
7
8
9
function f() {}
var x = {};

with (x) {
  f();
}

with (x)
  f();