JSDOC/TokenStream.js
authorAlan Knowles <alan@akbkhome.com>
Wed, 14 Jul 2010 08:49:12 +0000 (16:49 +0800)
committerAlan Knowles <alan@akbkhome.com>
Wed, 14 Jul 2010 08:49:12 +0000 (16:49 +0800)
JSDOC/TokenStream.js

index 26f03c4..bb17540 100644 (file)
@@ -196,7 +196,7 @@ TokenStream = XObject.define(
             Seed.print("STOP:" + stop);
             while ((token = this.look())) {
                 if (token.is(start)) {
-                   // Seed.print("balance: START : " + depth + " " + token.data);
+                    Seed.print("balance: START : " + depth + " " + token.data);
                     depth++;
                     started = true;
                 }
@@ -207,7 +207,7 @@ TokenStream = XObject.define(
                 
                 if (token.is(stop)) {
                     depth--;
-                   // Seed.print("balance: STOP: "  + depth + " " + token.data);
+                    Seed.print("balance: STOP: "  + depth + " " + token.data);
                     if (depth < 0) return got;
                 }
                 if (!this.next()) break;