check for invalid binding identifiers when generating inferred method names - fixes #1794

This commit is contained in:
Sebastian McKenzie
2015-06-20 21:48:42 +01:00
parent 2412c1d502
commit 498297ce6b
4 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
var a = {
eval(){
return eval;
}
};

View File

@@ -0,0 +1,7 @@
"use strict";
var a = {
eval: function _eval() {
return eval;
}
};