start method

void start(
  1. AstNode root
)

Implementation

void start(AstNode root) {
  root.accept(this, null);
  resolveIndexOfVariables(_foundVariables);
}