Esempio n. 1
0
        private bool isReferenced;                 //if a symbol is never referenced it will be omitted in the compilation

        public Symbol(string name, Global.DataType type)
        {
            this.name = name;
            this.type = type;
        }
Esempio n. 2
0
 public Token(Global.DataType type, string value)
 {
     this.type = type;
     this.value = value;
 }
Esempio n. 3
0
 public Token(Global.DataType type, string value)
 {
     this.type  = type;
     this.value = value;
 }
Esempio n. 4
0
 public string value; // Often the name, the string, the number, ... (all stored as a string)
 public Token(Global.DataType type)
 {
     this.type = type;
 }
Esempio n. 5
0
 public string value; // Often the name, the string, the number, ... (all stored as a string)
 public Token(Global.DataType type)
 {
     this.type = type;
 }