JSDOC/ScopeParser.js
[gnome.introspection-doc-generator] / JSDOC / ScopeParser.js
index 3cbac3c..a20c596 100644 (file)
@@ -348,7 +348,7 @@ ScopeParser.prototype = {
                             // key value..
                             
                             this.ts = new TokenStream(token.props[prop].val);
-                            this.parseScope(false);
+                            this.parseExpression();
                             
                         }
                         this.ts = curTS;
@@ -628,7 +628,7 @@ ScopeParser.prototype = {
                         case '{': //Token.LC:
                         case '[': //Token.LB:
                             print('SCOPE-CURLY/PAREN/BRACE:' + token.toString());
-                            print('SCOPE-CURLY/PAREN/BRACE:' + JSON.stringify(token, null,4));
+                           // print('SCOPE-CURLY/PAREN/BRACE:' + JSON.stringify(token, null,4));
                             //println("<i>"+token.data+"</i>");
                             var curTS = this.ts;
                             if (token.props) {
@@ -644,7 +644,7 @@ ScopeParser.prototype = {
                                     // key value..
                                     
                                     this.ts = new TokenStream(token.props[prop].val);
-                                    this.parseScope(false);
+                                    this.parseExpression();
                                     
                                 }
                                 this.ts = curTS;