JSDOC/ScopeParser.vala
[gnome.introspection-doc-generator] / JSDOC / Token.vala
index 7c13595..9b3f3d3 100644 (file)
@@ -39,7 +39,7 @@ namespace JSDOC
         public string type;
         public string name;
         public int line;
-        public string prefix;
+        public string prefix; // white space prefix... (when outputing with WS)
         
         public string outData;
         
@@ -47,6 +47,8 @@ namespace JSDOC
         
          // used to stuff tokens together when building a tree..
         public Gee.ArrayList<Gee.ArrayList<Token>> items;
+        // for a object definition, key -> array of tokens..
+           public Gee.HashMap<string,Gee.ArrayList<Token>> props;
         
         // props??? what's this???
         
@@ -63,6 +65,7 @@ namespace JSDOC
             
             
             this.items = new Gee.ArrayList<Gee.ArrayList<Token>>();
+            this.props = new Gee.HashMap<string,Gee.ArrayList<Token>>();
         }
     
         public string asString()
@@ -85,11 +88,11 @@ namespace JSDOC
             var ret =  this.data ;
             
             foreach(var ai in this.items ) {
-                
+                // supposed to iterate properties???
                 string str = "";
-                foreach( var it in ai) {
-                    str += it.toRaw(lvl+1);
-                }
+                //foreach( var it in ai) {
+                 //   str += it.toRaw(lvl+1);
+               // }
                 ret += str;
             }