swc/ecmascript/codegen/tests/references/560c364700fdb6b2.js
강동윤 f9be576e02
Ecmascript codegen (#40)
Comment is not fully supported yet
2018-10-25 13:17:05 +09:00

9 lines
88 B
JavaScript

(function() {
var a = 1;
a;
var b = 2;
with (c){
b;
}
}());