示例#1
0
 public TypedSymbol(string label, uint scope, LPD.IdentifierType type)
     : base(label, scope, type)
 {
 }
示例#2
0
 public TypedSymbol(string label, uint scope, LPD.IdentifierType type, LPD.ValueType returnType)
     : base(label, scope, type)
 {
     ReturnType = returnType;
 }
示例#3
0
 public Symbol(string label, uint scope, LPD.IdentifierType type)
 {
     Label          = label;
     IdentifierType = type;
     Scope          = scope;
 }