JSDOC/TokenReader.js
[gnome.introspection-doc-generator] / JSDOC / Token.vala
index eba9dff..a3ba98b 100644 (file)
@@ -84,11 +84,12 @@ namespace JSDOC
     
         public string asString()
         {
-            return "line:%d, type %s, name %s, data : %s , outData: %s".printf(
+            return "line:%d, id %d, type %s, data : %s,  name %s, , outData: %s".printf(
                     this.line,
+                    this.id,
                     this.type,
-                    this.name,
                     this.data,
+                    this.name,
                     this.outData == null ? "" : this.outData
             );