Exemplo n.º 1
0
 public VarDesc(string name)
 {
     this.name = name;
     this.type = new TypeRef("Void", true);
 }
Exemplo n.º 2
0
 public void AddBaseInterface(TypeRef t)
 {
     basetypes.Add(t);
 }
Exemplo n.º 3
0
 public VarDesc(string name, TypeRef type)
 {
     this.name = name;
     this.type = type;
 }