コード例 #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
ファイル: BuilderCache.cs プロジェクト: haise0/reAtomizer
 public void Free(AstBuilderState state)
 {
     astBuilderStatePool.Free(state);
 }
コード例 #3
0
ファイル: BuilderState.cs プロジェクト: n017/dnSpy
 public BuilderState(DecompilationContext ctx, BuilderCache cache)
 {
     this.ctx = ctx;
     this.cache = cache;
     this.State = cache.AllocateAstBuilderState();
 }
コード例 #4
0
ファイル: BuilderCache.cs プロジェクト: yueding/dnSpy
 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
ファイル: BuilderState.cs プロジェクト: GreenDamTan/dnSpy
		public BuilderState(DecompilationContext ctx, BuilderCache cache) {
			this.ctx = ctx;
			this.cache = cache;
			this.State = cache.AllocateAstBuilderState();
			this.State.AstBuilder.Context.CalculateILRanges = ctx.CalculateILRanges;
		}