JSDOC/Token.vala
[gnome.introspection-doc-generator] / JSDOC / Token.vala
index 3e544ce..681f1c6 100644 (file)
@@ -46,7 +46,9 @@ namespace JSDOC
         public string identifier;
         
          // used to stuff tokens together when building a tree..
-        public Gee.ArrayList<Gee.ArrayList<Token>> items;
+        public Gee.ArrayList<Token> items;
+        // for a object definition, key -> array of tokens..
+           public Gee.HashMap<string,Gee.ArrayList<Token>> props;
         
         // props??? what's this???
         
@@ -62,7 +64,7 @@ namespace JSDOC
             this.id = Token_id++;
             
             
-            this.items = new Gee.ArrayList<Gee.ArrayList<Token>>();
+            this.items = new Gee.ArrayList<Token>();
         }
     
         public string asString()