accept<E> method

  1. @override
E? accept<E>(
  1. AstVisitor<E> visitor
)
override

Use the given visitor to visit this node.

Return the value returned by the visitor as a result of visiting this node.

Implementation

@override
E? accept<E>(AstVisitor<E> visitor) => visitor.visitSwitchStatement(this);