From: Alan Knowles Date: Mon, 11 Jan 2016 09:00:12 +0000 (+0800) Subject: JSDOC/Scope.js X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=15d8f50209e07792458b915a0ef44673b687930e JSDOC/Scope.js --- diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 6d191bd..ed5202a 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -62,10 +62,16 @@ Scope.prototype = { dump : function(indent) { indent = indent || ''; + var str = ''; + for (var k in this.identifiers) { + str += str.length ? ", " : ""; + str += k + '=>' + this.identifiers[k].mungedValue; + } + print( indent + "Scope: " + this.id + "\n" + indent + "Started: " + ( this.token ? this.token.line : 'TOP' ) + "\n" + - indent + "- " + XObject.keys(this.identifiers).join(", ") + "\n" + indent + "- " + str + "\n" ); this.subScopes.forEach(function(s) { s.dump(indent + ' ');