JSDOC/ScopeParser.js
authoralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 08:51:55 +0000 (16:51 +0800)
committeralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 08:51:55 +0000 (16:51 +0800)
JSDOC/ScopeParser.js

index fbce5e5..684c3f9 100644 (file)
@@ -506,14 +506,15 @@ ScopeParser.prototype = {
 
                         case '{': //Token.LC:
                             isObjectLitAr.push(false);
-                            print(">>>>> OBJ PUSH(false)");
+                            
                             this.braceNesting++;
+                            print(">>>>> EXP PUSH(false)"+this.braceNesting);
                             break;
 
                         case '}': //Token.RC:
                             this.braceNesting--;
                             isObjectLitAr.pop();
-                            print(">>>>> OBJ POP");    
+                            print(">>>>> EXP POP" + this.braceNesting);    
                            // assert braceNesting >= expressionBraceNesting;
                             break;