JSDOC/Walker2.js
authorAlan Knowles <alan@akbkhome.com>
Fri, 16 Jul 2010 02:27:42 +0000 (10:27 +0800)
committerAlan Knowles <alan@akbkhome.com>
Fri, 16 Jul 2010 02:27:42 +0000 (10:27 +0800)
JSDOC/Walker2.js

index b36685d..ecd2764 100644 (file)
@@ -170,7 +170,7 @@ Walker2 = XObject.define(
                         // add it to the current scope????
                         
                         this.addSymbol('', true);
-
+                        print ( "Unconsumed Doc (TOKwhitespace): " + token.toString())
                         //throw "Unconsumed Doc (TOKwhitespace): " + this.currentDoc.toSource();
                     }
                     
@@ -249,7 +249,7 @@ Walker2 = XObject.define(
                     // a  << scope
                 if (token.type == 'NAME') {
                     
-                    print("TOK(ident)"+ token.toString());
+                    //print("TOK(ident)"+ token.toString());
                     
                     
                        
@@ -462,7 +462,7 @@ Walker2 = XObject.define(
                 //print ("NOT NAME");
                 
                 
-                if (token.type == "STRN")   {
+                if (token.type == "STRN")   { // THIS WILL NOT HAPPEN HERE?!!?
                     if (this.currentDoc) {
                         this.addSymbol(token.data.substring(1,token.data.length-1),false,'OBJECT');
 
@@ -472,7 +472,7 @@ Walker2 = XObject.define(
                 // really we only have to deal with object constructs and function calls that change the scope...
                 
                 
-                 if (token.name == 'FUNCTION') {
+                if (token.name == 'FUNCTION') {
                     //print("GOT FUNCTION");
                     // see if we have an unconsumed doc...