reservedFieldNames method

ReservedFieldNamesContext reservedFieldNames()

Implementation

ReservedFieldNamesContext reservedFieldNames() {
  dynamic _localctx = ReservedFieldNamesContext(context, state);
  enterRule(_localctx, 38, RULE_reservedFieldNames);
  int _la;
  try {
    enterOuterAlt(_localctx, 1);
    state = 293;
    strLit();
    state = 298;
    errorHandler.sync(this);
    _la = tokenStream.LA(1)!;
    while (_la == TOKEN_COMMA) {
      state = 294;
      match(TOKEN_COMMA);
      state = 295;
      strLit();
      state = 300;
      errorHandler.sync(this);
      _la = tokenStream.LA(1)!;
    }
  } on RecognitionException catch (re) {
    _localctx.exception = re;
    errorHandler.reportError(this, re);
    errorHandler.recover(this, re);
  } finally {
    exitRule();
  }
  return _localctx;
}