JSDOC/Token.js
[gnome.introspection-doc-generator] / JSDOC / Token.js
index 95f84ca..a1d5e51 100644 (file)
@@ -47,7 +47,9 @@ Token = XObject.define(
     {
          toString: function()
         {
-            return 'line:' + this.line + ', type:' + this.type + ', name:' + this.name + ', data:' + this.data;
+            return 'line:' + this.line + ', type:' + this.type + 
+                ', name:' + this.name + ', data:' + this.data + 
+                (this.outData === false) ? '' : ( 'outData : ' + '');
         },