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