Microsoft.Scripting.Debugging.CompilerServices.DebugContext.CreateFrameForGenerator C# (CSharp) Method

CreateFrameForGenerator() private method

private CreateFrameForGenerator ( FunctionInfo func ) : DebugFrame
func FunctionInfo
return DebugFrame
        internal DebugFrame CreateFrameForGenerator(FunctionInfo func) {
            DebugThread thread = GetCurrentThread();
            DebugFrame frame = new DebugFrame(thread, func);
            return frame;
        }