1 instantiation of InterpretedFrameInfo
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\InterpretedFrame.cs (1)
138
yield return new
InterpretedFrameInfo
(frame.Name, frame.GetDebugInfo(frame.InstructionIndex));
6 references to InterpretedFrameInfo
System.Linq.Expressions (6)
System\Linq\Expressions\Interpreter\InterpretedFrame.cs (6)
133
public IEnumerable<
InterpretedFrameInfo
> GetStackTraceDebugInfo()
145
exception.Data[typeof(
InterpretedFrameInfo
)] ??= new List<
InterpretedFrameInfo
>(GetStackTraceDebugInfo()).ToArray();
148
public static
InterpretedFrameInfo
[]? GetExceptionStackTrace(Exception exception)
150
return exception.Data[typeof(
InterpretedFrameInfo
)] as
InterpretedFrameInfo
[];