aboutsummaryrefslogtreecommitdiffstats
path: root/src/Scope.js
diff options
context:
space:
mode:
authorMisko Hevery2010-07-02 14:43:17 -0700
committerMisko Hevery2010-07-02 14:43:17 -0700
commit105e9443c4170870dd34f69073a6eafaabeaf567 (patch)
treee7d591f255ec945c5b21813e186fda9e3c00c52c /src/Scope.js
parentfdc0bb232a259faf791b901f583e09bba3213ba5 (diff)
downloadangular.js-105e9443c4170870dd34f69073a6eafaabeaf567.tar.bz2
fixed special keywords in chrome such as x.throw must be x["throw"].
Diffstat (limited to 'src/Scope.js')
-rw-r--r--src/Scope.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Scope.js b/src/Scope.js
index 637fc25e..e9b61ec4 100644
--- a/src/Scope.js
+++ b/src/Scope.js
@@ -46,6 +46,7 @@ function setter(instance, path, value){
///////////////////////////////////
var getterFnCache = {};
+var JS_KEYWORDS = ["this", "throw", "for", "foreach", "var", "const"];
function getterFn(path){
var fn = getterFnCache[path];
if (fn) return fn;
@@ -53,7 +54,7 @@ function getterFn(path){
var code = 'function (self){\n';
code += ' var last, fn, type;\n';
foreach(path.split('.'), function(key) {
- key = (key == 'this') ? '["this"]' : '.' + key;
+ key = (includes(JS_KEYWORDS, key)) ? '["' + key + '"]' : '.' + key;
code += ' if(!self) return self;\n';
code += ' last = self;\n';
code += ' self = self' + key + ';\n';