atum icon indicating copy to clipboard operation
atum copied to clipboard

Move lhs eval/arg check to semantic mapping phase

Open mattbierner opened this issue 11 years ago • 1 comments

var f = function(){'use strict';
var eval;
};

should throw immediately during semantic mapping, not when f is run.

mattbierner avatar Feb 08 '14 19:02 mattbierner

Same for case:

var f = function(){'use strict';
function f(eval) { };
};

mattbierner avatar Feb 10 '14 20:02 mattbierner