X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=a20c596678922a725ac97da0a1fcb21b52b25354;hp=1b7731207e7ab13863ed098a72dd9d4fdc641bce;hb=69be0ed8cc8f94be9e19411e4821316d0b0adc92;hpb=2a675f4404cc62cbac76f436efdad426088ec3d8 diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index 1b77312..a20c596 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -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,6 +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)); //println(""+token.data+""); var curTS = this.ts; if (token.props) { @@ -643,7 +644,7 @@ ScopeParser.prototype = { // key value.. this.ts = new TokenStream(token.props[prop].val); - this.parseScope(false); + this.parseExpression(); } this.ts = curTS;