示例#1
0
 public EventDef(FeatureAttr attr, BaseTypeRef type, string name)
 {
     this.attr   = attr;
     this.name   = name;
     this.type   = type;
     is_resolved = false;
 }
示例#2
0
文件: EventDef.cs 项目: nobled/mono
 public EventDef (FeatureAttr attr, BaseTypeRef type, string name)
 {
         this.attr = attr;
         this.name = name;
         this.type = type;
         is_resolved = false;
 }
示例#3
0
 public PropertyDef (FeatureAttr attr, BaseTypeRef type, string name, ArrayList arg_list)
 {
         this.attr = attr;
         this.name = name;
         this.type = type;
         this.arg_list = arg_list;
         is_resolved = false;
 }
 public PropertyDef(FeatureAttr attr, BaseTypeRef type, string name, ArrayList arg_list)
 {
     this.attr     = attr;
     this.name     = name;
     this.type     = type;
     this.arg_list = arg_list;
     is_resolved   = false;
 }