dropComments method

void dropComments()

Implementation

void dropComments() {
  tokens.removeWhere(
    (e) => [
      TokenType.kLineComment,
      TokenType.kBlockComment,
    ].contains(e.type),
  );
}