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

◆ VisitGoto()

override Expression System.Linq.Expressions.DebugViewWriter.VisitGoto ( GotoExpression node)
inlinepackagevirtual

Reimplemented from System.Linq.Expressions.ExpressionVisitor.

Definition at line 960 of file DebugViewWriter.cs.

961 {
962 Out("." + node.Kind, Flow.Space);
963 Out(GetLabelTargetName(node.Target), Flow.Space);
964 Out("{", Flow.Space);
965 Visit(node.Value);
966 Out(Flow.Space, "}");
967 return node;
968 }
string GetLabelTargetName(LabelTarget target)
virtual ? Expression Visit(Expression? node)

References System.Linq.Expressions.DebugViewWriter.GetLabelTargetName(), System.Reflection.Out, and System.Linq.Expressions.ExpressionVisitor.Visit().