JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / Identifier.js
1 //<Script type="text/javascript">
2
3 /**
4  * @class  Identifier
5  * holds details about identifiers and their replacement values
6  * used by the packer..
7  * 
8  */
9
10
11 function Identifier(name, scope) {
12    // print("NEW IDENT: " + name);
13     this.name = name;
14     this.scope = scope;
15     this.identifiers = {};
16     
17 }
18 Identifier.prototype = {
19     name: '',
20     refcount: 1,
21     mungedValue : '', // should be at least 1?!?!
22     scope : false,  // script of fn scope..
23     toMunge : true
24 };
25