public ResolutionContext(ParseCacheView parseCache, ConditionalCompilationFlags gFlags, IBlockNode bn, IStatement stmt = null) { this.CompilationEnvironment = gFlags; this.ParseCache = parseCache; var initCtxt = new ContextFrame(this, bn, stmt); stack.Push(initCtxt); }
public void Push(ContextFrame frm) { stack.Push(frm); }