X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FIdentifier.js;h=7cc82bd4c0eeab0e439ac0f0940dce42684bcfee;hb=41634fc298fa9ac69afb6d428599ca6114de84f4;hp=07078ce545b760f838d86d0f67bb0935df187700;hpb=b7a6e07dca66b2f1a67ad2acec5fcc73f8e3e5f0;p=gnome.introspection-doc-generator diff --git a/JSDOC/Identifier.js b/JSDOC/Identifier.js index 07078ce..7cc82bd 100644 --- a/JSDOC/Identifier.js +++ b/JSDOC/Identifier.js @@ -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 -}); +};