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

◆ VisitExtension()

override Expression System.Linq.Expressions.DebugViewWriter.VisitExtension ( Expression node)
inlinepackagevirtual

Reimplemented from System.Linq.Expressions.ExpressionVisitor.

Definition at line 1087 of file DebugViewWriter.cs.

1088 {
1089 Out($".Extension<{node.GetType()}>");
1090 if (node.CanReduce)
1091 {
1092 Out(Flow.Space, "{", Flow.NewLine);
1093 Indent();
1094 Visit(node.Reduce());
1095 Dedent();
1096 Out(Flow.NewLine, "}");
1097 }
1098 return node;
1099 }
virtual ? Expression Visit(Expression? node)

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