JSDOC/ScopeParser.vala
authorAlan Knowles <alan@roojs.com>
Fri, 6 Nov 2015 08:58:53 +0000 (16:58 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 6 Nov 2015 08:58:53 +0000 (16:58 +0800)
JSDOC/ScopeParser.vala

index 73072b3..c705f4a 100644 (file)
@@ -954,12 +954,12 @@ namespace JSDOC {
 
            //assert scope.getParentScope() == globalScope;
            scope.preventMunging();
-       },
+       }
        
        string getIdentifier(string symbol, Scope in_scope, Token token) 
        {
            string identifier;
-           var scope in_scope;
+           var scope in_scope;
            while (scope != null) {
                identifier = scope.getIdentifier(symbol, token);
                //println("ScopeParser.getIdentgetUsedSymbols("+symbol+")=" + scope.getUsedSymbols().join(','));
@@ -970,4 +970,4 @@ namespace JSDOC {
            }
            return "";
        }
-};
+}