visitInExpression method

  1. @override
void visitInExpression(
  1. InExpression e,
  2. void arg
)
override

Implementation

@override
void visitInExpression(InExpression e, void arg) {
  // The RHS can use everything from the parent scope, but it can't add new
  // table references that would be visible to others.
  e.scope = StatementScope(e.scope);
  visitChildren(e, arg);
}