Fixed typo

This commit is contained in:
Martin Carlberg
2013-02-19 17:46:24 +01:00
parent 8c63e32450
commit 32bf87c0c3
+1 -1
View File
@@ -78,7 +78,7 @@ Scope.prototype.getLvar = function(/* String */ lvarName, /* BOOL */ stopAtMetho
var prev = this.prev;
// Stop at the method declaration
if (prev && (!stopAtMethod || !this.methodtype))
if (prev && (!stopAtMethod || !this.methodType))
return prev.getLvar(lvarName, stopAtMethod);
return null;