- `const` without value - `delete` of expression - redefining `arguments` or `eval` extend `test/ufuzz.js` - optionally generate "use strict" - improve handling of test cases with syntax errors - group IIFE generation - generate bare anonymous functions - workaround `console.log()` for `new function()` - generate expressions with `this` fixes #1810
9 lines
107 B
JavaScript
9 lines
107 B
JavaScript
function f() {
|
|
try {} catch (eval) {}
|
|
}
|
|
|
|
function g() {
|
|
"use strict";
|
|
try {} catch (eval) {}
|
|
}
|