JSDOC/ScopeParser.vala
[gnome.introspection-doc-generator] / JSDOC / Token.vala
index 6019777..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<Token>();
+            this.items = new Gee.ArrayList<Gee.ArrayList<Token>>();
             this.props = new Gee.HashMap<string,Gee.ArrayList<Token>>();
         }
     
@@ -88,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;
             }