accept<T> method

T accept<T>(
  1. IfConditionExpressionVisitor<T> visitor
)
override

Calls the appropriate visit method on visitor.

Implementation

T accept<T>(IfConditionExpressionVisitor<T> visitor) =>
    visitor.visitIfConditionOperation(this);