swc/ecmascript/codegen/tests/references/32a9af0615bf7618.js

8 lines
124 B
JavaScript
Raw Normal View History

(function() {
var a = 1;
with (b){
a += a += 2; // 'i' lookup can be observed by obj's getter.
}
}());