Example #1
0
 public MethodRecord(int id, TypeRecord type, GenericInstRecord ginst, string name, string sig, int param_count) : base(id)
 {
     Type        = type;
     GenericInst = ginst;
     Name        = name;
     Signature   = sig;
     ParamCount  = param_count;
 }
Example #2
0
 public TypeRecord(int id, ModuleRecord module, string name, GenericInstRecord ginst) : base(id)
 {
     Module      = module;
     Name        = name;
     GenericInst = ginst;
 }