JSDOC/TokenReader.vala
[gnome.introspection-doc-generator] / JSDOC / TokenReader.vala
index a99f756..e6ebf31 100644 (file)
@@ -70,6 +70,13 @@ namespace JSDOC {
            public new Token get(int i) {
             return this.tokens.get(i);
         }
+        public void dump()
+        {
+               foreach(var token in this.tokens) {
+                       print(token.asString());
+               }
+        }
+        
     }
 
     public errordomain TokenReader_Error {