Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetStackTraceDebugInfo()

IEnumerable< InterpretedFrameInfo > System.Linq.Expressions.Interpreter.InterpretedFrame.GetStackTraceDebugInfo ( )
inline

Definition at line 112 of file InterpretedFrame.cs.

113 {
114 InterpretedFrame frame = this;
115 do
116 {
117 yield return new InterpretedFrameInfo(frame.Name, frame.GetDebugInfo(frame.InstructionIndex));
118 frame = frame.Parent;
119 }
120 while (frame != null);
121 }
InterpretedFrame(Interpreter interpreter, IStrongBox[] closure)

References System.Linq.Expressions.Interpreter.InterpretedFrame.GetDebugInfo(), System.Linq.Expressions.Interpreter.InterpretedFrame.InstructionIndex, System.Linq.Expressions.Interpreter.InterpretedFrame.Name, and System.Linq.Expressions.Interpreter.InterpretedFrame.Parent.

Referenced by System.Linq.Expressions.Interpreter.InterpretedFrame.SaveTraceToException().