JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / Identifier.js
index 07078ce..7cc82bd 100644 (file)
@@ -8,7 +8,8 @@
  */
 
 
-Identifier = function(name, scope) {
+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
-});
+};