JSDOC/ScopeParser.js
[gnome.introspection-doc-generator] / JSDOC / Token.js
index 95f84ca..388f191 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 : ' + this.outData));
         },