fullIdent method

FullIdentContext fullIdent()

Implementation

FullIdentContext fullIdent() {
  dynamic _localctx = FullIdentContext(context, state);
  enterRule(_localctx, 74, RULE_fullIdent);
  int _la;
  try {
    enterOuterAlt(_localctx, 1);
    state = 485;
    ident();
    state = 490;
    errorHandler.sync(this);
    _la = tokenStream.LA(1)!;
    while (_la == TOKEN_DOT) {
      state = 486;
      match(TOKEN_DOT);
      state = 487;
      ident();
      state = 492;
      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;
}