public MethodBodyContext(GeneratedMethod method, BaseTypeGenerationContext typeGenerationContext, BaseMethodGenerationContext context) { this.GeneratedMethod = method; this.TypeGenerationContext = typeGenerationContext; this.MethodContext = context; this.generator = new DelegateGenerator(typeGenerationContext); }
public GeneratedDelegate(MethodBodyContext context, GeneratedMethod method, DelegateGenerator generator) { this.context = context; this.method = method; this.generator = generator; }
public DelegateBodyContext(MethodBodyContext context, DelegateGenerator generator) { this.context = context; this.generator = generator; }