Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public void Free(AstBuilderState state)
 {
     astBuilderStatePool.Free(state);
 }
Ejemplo n.º 3
0
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
Ejemplo n.º 4
0
 public void Free(AstBuilderState state)
 {
     astBuilderStatePool.Free(state);
 }
Ejemplo n.º 5
0
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx   = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
Ejemplo n.º 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;
		}