JSDOC/ScopeParser.js
[gnome.introspection-doc-generator] / JSDOC / ScopeParser.js
index 2914d18..dbc42b1 100644 (file)
@@ -303,8 +303,8 @@ ScopeParser.prototype = {
                             var nts = [];
                             while (true) {
                                 var n = this.ts.lookTok();
-                                print(n.toString());
-                                if (!n || n.data == ',') {
+                                
+                                if (!n || n.type == 'VOID' || n.data == ',') {
                                     break;
                                 }
                                 nts.push(n);