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

            return(callStackSize < debugAction.StackSize);
        }