eatCommas method

void eatCommas()

Implementation

void eatCommas() {
  while (next(TokenType.COMMA)) {
    continue;
  }
}