visitNode method

  1. @override
void visitNode(
  1. SAstNode node
)
override

Default descent. Unlike the analyzer's GeneralizingAstVisitor, the mirror GeneralizingSAstVisitor.visitNode returns without recursing, so an un-overridden node would halt the walk. Recurse into children here so the resolver reaches nested blocks and identifier uses.

Implementation

@override
void visitNode(SAstNode node) => node.visitChildren(this);