visitMultiColumnSetComponent method

  1. @override
void visitMultiColumnSetComponent(
  1. MultiColumnSetComponent e,
  2. void arg
)
override

Implementation

@override
void visitMultiColumnSetComponent(MultiColumnSetComponent e, void arg) {
  symbol('(', spaceBefore: true);
  _join(e.columns, ',');
  symbol(')');
  symbol('=', spaceBefore: true, spaceAfter: true);
  visit(e.rowValue, arg);
}