visitListExpression method

void visitListExpression(
  1. ListExpression node
)
override

Implementation

void visitListExpression(ListExpression node) {
  for (var item in node.contents) {
    item.accept(this);
  }
}