internal ScopeLocals(EvaluationState evalState, int frameIndex) { EvalState = evalState; FrameIndex = frameIndex; }
private static bool IsCallStackShallower(Node node, Context context, ModuleLiteral env, DebugAction debugAction) { var callStackSize = EvaluationState.GetStackTrace(context, env, node).Length; return(callStackSize < debugAction.StackSize); }