atum
atum copied to clipboard
Move lhs eval/arg check to semantic mapping phase
var f = function(){'use strict';
var eval;
};
should throw immediately during semantic mapping, not when f is run.
Same for case:
var f = function(){'use strict';
function f(eval) { };
};