JSDOC/ScopeParser.js
authorAlan Knowles <alan@akbkhome.com>
Thu, 15 Jul 2010 05:25:07 +0000 (13:25 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 15 Jul 2010 05:25:07 +0000 (13:25 +0800)
JSDOC/ScopeParser.js

index 7f106aa..018c4a6 100644 (file)
@@ -781,7 +781,7 @@ ScopeParser.prototype = {
     
     parseFunctionDeclaration : function() 
     {
-        print("PARSE FUNCTION");
+        //print("PARSE FUNCTION");
         var symbol;
         var token;
         var currentScope  = false; 
@@ -838,12 +838,12 @@ ScopeParser.prototype = {
         }
 
         token = this.ts.nextTok();
-        print(token.toString());
+        //print(token.toString());
         // assert token.getType() == Token.LC;
         this.braceNesting++;
 
         token = this.ts.nextTok();
-        print(token.toString());
+        //print(token.toString());
         if (token.type == "STRN" && this.ts.lookTok(1).data == ';') {
             /*