X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScope.js;h=5fe7403f1007939bf227d9de5dde693eaebe83ec;hp=f65f8b1405e7756135ba5c1eea660451318b4429;hb=bb1da2c04b0e59e75cff3317798af860f3439a11;hpb=ff70bf03db725a8610e84dccc2a09e6a4bd5a787 diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index f65f8b1..5fe7403 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -25,7 +25,8 @@ function Scope(braceN, parent, startTokN, lastIdent, token) this.ident = lastIdent; this.gid = Scope.gid++; - print("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP')); + print("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP') + ' : ' + + (token ? token.toString() : '')); if (parent) { this.parent.subScopes.push(this);