UglifyJS/test/input/invalid/function_1.js
alexlamsl 379365d391 improve parser under "use strict"
- `const` without value
- `delete` of expression
- redefining `arguments` or `eval`

fixes #1810
2017-04-23 02:51:35 +08:00

7 lines
71 B
JavaScript

function f(arguments) {
}
function g(arguments) {
"use strict";
}