UglifyJS/test/input/lint/input.js
2018-06-11 02:42:02 +08:00

20 lines
278 B
JavaScript

function assignToGlobal() {
x = 1;
}
function eval() {
eval("var x = 1");
}
function funcArguments() {
console.log("args: ", arguments);
}
function nestedDefuns() {
if (true) {
function fn() { }
}
}
function unreferencedFnc() { }
undeclaredFnc();