예제 #1
0
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx   = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
     this.State.AstBuilder.Context.CalculateILRanges = ctx.CalculateILRanges;
 }
예제 #2
0
파일: BuilderState.cs 프로젝트: n017/dnSpy
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
예제 #3
0
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx   = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
예제 #4
0
		public BuilderState(DecompilationContext ctx, BuilderCache cache) {
			this.ctx = ctx;
			this.cache = cache;
			this.State = cache.AllocateAstBuilderState();
			this.State.AstBuilder.Context.CalculateILRanges = ctx.CalculateILRanges;
		}