Пример #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
 public void Free(AstBuilderState state)
 {
     astBuilderStatePool.Free(state);
 }
Пример #3
0
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
Пример #4
0
 public void Free(AstBuilderState state)
 {
     astBuilderStatePool.Free(state);
 }
Пример #5
0
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx   = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
Пример #6
0
		public BuilderState(DecompilationContext ctx, BuilderCache cache) {
			this.ctx = ctx;
			this.cache = cache;
			this.State = cache.AllocateAstBuilderState();
			this.State.AstBuilder.Context.CalculateILRanges = ctx.CalculateILRanges;
		}