Exemple #1
0
 public CQ_Type_Class(string keyword, bool bInterface, string filename)
 {
     this.keyword    = keyword;
     this._namespace = "";
     type            = new SType(keyword, "", filename, bInterface);
     compiled        = false;
 }
Exemple #2
0
 public DeleFunction(SType stype, SInstance _this, string function)
 {
     this.calltype = stype;
     this.callthis = _this;
     this.function = function;
 }
Exemple #3
0
 private CQType(SType type)
 {
     this.stype = type;
 }