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

◆ VisitMethodCall()

override Expression System.Linq.Expressions.DebugViewWriter.VisitMethodCall ( MethodCallExpression node)
inlinepackagevirtual

Reimplemented from System.Linq.Expressions.ExpressionVisitor.

Definition at line 728 of file DebugViewWriter.cs.

729 {
730 Out(".Call ");
731 if (node.Object != null)
732 {
734 }
735 else if (node.Method.DeclaringType != null)
736 {
737 Out(node.Method.DeclaringType.ToString());
738 }
739 else
740 {
741 Out("<UnknownType>");
742 }
743 Out(".");
744 Out(node.Method.Name);
745 VisitExpressions('(', node.Arguments);
746 return node;
747 }
void ParenthesizedVisit(Expression parent, Expression nodeToVisit)

References System.Reflection.Out, and System.Linq.Expressions.DebugViewWriter.ParenthesizedVisit().