コード例 #1
0
ファイル: MethodBodyContext.cs プロジェクト: legendz3/Siege
 public MethodBodyContext(GeneratedMethod method, BaseTypeGenerationContext typeGenerationContext, BaseMethodGenerationContext context)
 {
     this.GeneratedMethod       = method;
     this.TypeGenerationContext = typeGenerationContext;
     this.MethodContext         = context;
     this.generator             = new DelegateGenerator(typeGenerationContext);
 }
コード例 #2
0
ファイル: GeneratedDelegate.cs プロジェクト: adamjmoon/Siege
 public GeneratedDelegate(MethodBodyContext context, GeneratedMethod method, DelegateGenerator generator)
 {
     this.context = context;
     this.method = method;
     this.generator = generator;
 }
コード例 #3
0
ファイル: GeneratedDelegate.cs プロジェクト: legendz3/Siege
 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;
 }