X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=bc695efd0ae46bd150bb3a6200c1da82f4dbd265;hp=d96546d1bae5e4cf40c047a821ddbd9b0e9ba906;hb=f97b7efe182b819e8f6143b7aeb9fd45c7ab75f0;hpb=5ed307b3777313bcef4540112f171c629e5468d0 diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index d96546d..bc695ef 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -328,6 +328,7 @@ ScopeParser.prototype = { case "PUNC.LEFT_CURLY": // { case "PUNC.LEFT_PAREN": // ( + case "PUNC.LEFT_BRACE": // [ //print('SCOPE-CURLY/PAREN:' + token.toString()); //println(""+token.data+""); var curTS = this.ts; @@ -348,7 +349,7 @@ ScopeParser.prototype = { // key value.. this.ts = new TokenStream(token.props[prop].val); - this.parseScope(false); + this.parseExpression(); } this.ts = curTS; @@ -627,7 +628,7 @@ ScopeParser.prototype = { case '(': //Token.LP: case '{': //Token.LC: case '[': //Token.LB: - print('SCOPE-CURLY/PAREN/BRACE:' + token.toString()); + //print('SCOPE-CURLY/PAREN/BRACE:' + token.toString()); // print('SCOPE-CURLY/PAREN/BRACE:' + JSON.stringify(token, null,4)); //println(""+token.data+""); var curTS = this.ts;