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

index e24ca4c..ac36596 100644 (file)
@@ -193,11 +193,11 @@ TokenStream = XObject.define(
             var depth = 0;
             var got = [];
             var started = false;
-            Seed.print("START:" + start);
-            Seed.print("STOP:" + stop);
+            //Seed.print("START:" + start);
+            //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;
                 }
@@ -208,7 +208,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 < 1) return got;
                 }
                 if (!this.next()) break;