JSDOC/TokenReader.js
[gnome.introspection-doc-generator] / JSDOC / Identifier.vala
1
2
3 /**
4  * @class  Identifier
5  * holds details about identifiers and their replacement values
6  * used by the packer..
7  * 
8  */
9
10 namespace JSDOC 
11 {
12     public class  Identifier  : Object 
13     {
14                 
15                 public string name;
16                 public int refcount = 1; // used?
17                 public string mungedValue; // should be at least 1?!?!
18                 public Scope scope ;  // script of fn scope..
19                 public bool toMunge = true;
20         
21         
22
23                 public  Identifier(string name, Scope scope) {
24                    // print("NEW IDENT: " + name);
25                         this.name = name;
26                         this.scope = scope;
27                         this.mungedValue = "";
28                 //      this.identifiers = {}; <<< used where?
29         
30                 }
31         }
32         
33 }
34
35