JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / Identifier.js
index 3cb9806..7cc82bd 100644 (file)
@@ -9,6 +9,7 @@
 
 
 function Identifier(name, scope) {
+   // print("NEW IDENT: " + name);
     this.name = name;
     this.scope = scope;
     this.identifiers = {};
@@ -20,5 +21,5 @@ Identifier.prototype = {
     mungedValue : '', // should be at least 1?!?!
     scope : false,  // script of fn scope..
     toMunge : true
-});
+};