UglifyJS/test/input/invalid/function_2.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
64 B
JavaScript

function arguments() {
}
function eval() {
"use strict";
}