Microsoft.Scripting.Debugging.DebugFrame.GetParamValuesForGenerator C# (CSharp) Method

GetParamValuesForGenerator() private method

private GetParamValuesForGenerator ( ) : object[]
return object[]
        private object[] GetParamValuesForGenerator() {
            List<object> paramValues = new List<object>();

            // First parameter is frame
            paramValues.Add(this);

            for (int i = 0; i < _funcInfo.Variables.Count; i++) {
                if (_funcInfo.Variables[i].IsParameter) {
                    paramValues.Add(_liftedLocals[i]);
                }
            }

            return paramValues.ToArray();
        }