swc/ecmascript/codegen/tests/references/3cbf0138d2dc0686.js
강동윤 6e028696a5
Faster sourcemap generation for large files (#697)
We buffer operations related to source map and make it fast using an assumption that the byte positions always increment while emitting a file.
2020-03-02 20:49:08 +09:00

14 lines
218 B
JavaScript

(function() {
// https://github.com/Constellation/esmangle/issues/65
var a = 1;
var b = 2;
var c = 3;
var d = [].e.f(arguments);
return [
a,
b,
c,
g
];
}());