示例#1
0
 public MethodBodyContext(GeneratedMethod method, BaseTypeGenerationContext typeGenerationContext, BaseMethodGenerationContext context)
 {
     this.GeneratedMethod       = method;
     this.TypeGenerationContext = typeGenerationContext;
     this.MethodContext         = context;
     this.generator             = new DelegateGenerator(typeGenerationContext);
 }
示例#2
0
 public GeneratedDelegate(MethodBodyContext context, GeneratedMethod method, DelegateGenerator generator)
 {
     this.context = context;
     this.method = method;
     this.generator = generator;
 }
示例#3
0
 public GeneratedDelegate(MethodBodyContext context, GeneratedMethod method, DelegateGenerator generator)
 {
     this.context   = context;
     this.method    = method;
     this.generator = generator;
 }
示例#4
0
 public DelegateBodyContext(MethodBodyContext context, DelegateGenerator generator)
 {
     this.context   = context;
     this.generator = generator;
 }