accept<E> abstract method

  1. @ToBeDeprecated('Use accept2 instead')
E? accept<E>(
  1. AstVisitor<E> visitor
)

Use the given visitor to visit this node.

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

Implementation

@ToBeDeprecated('Use accept2 instead')
E? accept<E>(AstVisitor<E> visitor);