swc/ecmascript/codegen/tests/references/26998ded3750f7d8.js
David Sherret 708efebac9 Fix comment line's end to be on same line (#544)
- fix comment line's end to be on same line.
2019-12-30 11:09:45 +09:00

6 lines
219 B
JavaScript

// To avoid JSC bug, we don't distinguish FunctionExpression name scope and it's function scope
(function a() {
var b = 1; // Don't rename this variable to a name that is the same to function's name
c(b);
}());