From 32bf87c0c377f511b23e9a28f72e556dc75e1db5 Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Tue, 19 Feb 2013 17:46:24 +0100 Subject: [PATCH] Fixed typo --- Objective-J/ObjJAcornCompiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/ObjJAcornCompiler.js b/Objective-J/ObjJAcornCompiler.js index 7e6faa6f5..1ec8b2aba 100644 --- a/Objective-J/ObjJAcornCompiler.js +++ b/Objective-J/ObjJAcornCompiler.js @@ -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;