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

◆ IsSimpleExpression()

static bool System.Linq.Expressions.DebugViewWriter.IsSimpleExpression ( Expression node)
inlinestaticprivate

Definition at line 441 of file DebugViewWriter.cs.

442 {
443 if (node is BinaryExpression binaryExpression)
444 {
445 if (!(binaryExpression.Left is BinaryExpression))
446 {
447 return !(binaryExpression.Right is BinaryExpression);
448 }
449 return false;
450 }
451 return false;
452 }

Referenced by System.Linq.Expressions.DebugViewWriter.VisitConditional().