All Downloads are FREE. Search and download functionalities are using the official Maven repository.

yesql4j.antlr.YeSQLGrammarParser Maven / Gradle / Ivy

There is a newer version: 0.1.8-beta
Show newest version
// Generated from yesql4j\antlr\YeSQLGrammar.g4 by ANTLR 4.8
package yesql4j.antlr;
import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.misc.*;
import org.antlr.v4.runtime.tree.*;
import java.util.List;
import java.util.Iterator;
import java.util.ArrayList;

@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
public class YeSQLGrammarParser extends Parser {
	static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }

	protected static final DFA[] _decisionToDFA;
	protected static final PredictionContextCache _sharedContextCache =
		new PredictionContextCache();
	public static final int
		NAME_TAG=1, COMMENT_MARKER=2, NEWLINE=3, WS=4, NON_WS=5;
	public static final int
		RULE_queries = 0, RULE_query = 1, RULE_statement = 2, RULE_docsting = 3, 
		RULE_name = 4, RULE_comment = 5, RULE_line = 6, RULE_emptyline = 7;
	private static String[] makeRuleNames() {
		return new String[] {
			"queries", "query", "statement", "docsting", "name", "comment", "line", 
			"emptyline"
		};
	}
	public static final String[] ruleNames = makeRuleNames();

	private static String[] makeLiteralNames() {
		return new String[] {
			null, "'name:'", "'--'"
		};
	}
	private static final String[] _LITERAL_NAMES = makeLiteralNames();
	private static String[] makeSymbolicNames() {
		return new String[] {
			null, "NAME_TAG", "COMMENT_MARKER", "NEWLINE", "WS", "NON_WS"
		};
	}
	private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
	public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);

	/**
	 * @deprecated Use {@link #VOCABULARY} instead.
	 */
	@Deprecated
	public static final String[] tokenNames;
	static {
		tokenNames = new String[_SYMBOLIC_NAMES.length];
		for (int i = 0; i < tokenNames.length; i++) {
			tokenNames[i] = VOCABULARY.getLiteralName(i);
			if (tokenNames[i] == null) {
				tokenNames[i] = VOCABULARY.getSymbolicName(i);
			}

			if (tokenNames[i] == null) {
				tokenNames[i] = "";
			}
		}
	}

	@Override
	@Deprecated
	public String[] getTokenNames() {
		return tokenNames;
	}

	@Override

	public Vocabulary getVocabulary() {
		return VOCABULARY;
	}

	@Override
	public String getGrammarFileName() { return "YeSQLGrammar.g4"; }

	@Override
	public String[] getRuleNames() { return ruleNames; }

	@Override
	public String getSerializedATN() { return _serializedATN; }

	@Override
	public ATN getATN() { return _ATN; }

	public YeSQLGrammarParser(TokenStream input) {
		super(input);
		_interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
	}

	public static class QueriesContext extends ParserRuleContext {
		public TerminalNode EOF() { return getToken(YeSQLGrammarParser.EOF, 0); }
		public List query() {
			return getRuleContexts(QueryContext.class);
		}
		public QueryContext query(int i) {
			return getRuleContext(QueryContext.class,i);
		}
		public QueriesContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_queries; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterQueries(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitQueries(this);
		}
	}

	public final QueriesContext queries() throws RecognitionException {
		QueriesContext _localctx = new QueriesContext(_ctx, getState());
		enterRule(_localctx, 0, RULE_queries);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(19);
			_errHandler.sync(this);
			_la = _input.LA(1);
			while (_la==COMMENT_MARKER || _la==WS) {
				{
				{
				setState(16);
				query();
				}
				}
				setState(21);
				_errHandler.sync(this);
				_la = _input.LA(1);
			}
			setState(22);
			match(EOF);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class QueryContext extends ParserRuleContext {
		public NameContext name() {
			return getRuleContext(NameContext.class,0);
		}
		public StatementContext statement() {
			return getRuleContext(StatementContext.class,0);
		}
		public List docsting() {
			return getRuleContexts(DocstingContext.class);
		}
		public DocstingContext docsting(int i) {
			return getRuleContext(DocstingContext.class,i);
		}
		public QueryContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_query; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterQuery(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitQuery(this);
		}
	}

	public final QueryContext query() throws RecognitionException {
		QueryContext _localctx = new QueryContext(_ctx, getState());
		enterRule(_localctx, 2, RULE_query);
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(25);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
			case 1:
				{
				setState(24);
				docsting();
				}
				break;
			}
			setState(27);
			name();
			setState(29);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
			case 1:
				{
				setState(28);
				docsting();
				}
				break;
			}
			setState(31);
			statement();
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class StatementContext extends ParserRuleContext {
		public List line() {
			return getRuleContexts(LineContext.class);
		}
		public LineContext line(int i) {
			return getRuleContext(LineContext.class,i);
		}
		public List comment() {
			return getRuleContexts(CommentContext.class);
		}
		public CommentContext comment(int i) {
			return getRuleContext(CommentContext.class,i);
		}
		public StatementContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_statement; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterStatement(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitStatement(this);
		}
	}

	public final StatementContext statement() throws RecognitionException {
		StatementContext _localctx = new StatementContext(_ctx, getState());
		enterRule(_localctx, 4, RULE_statement);
		try {
			int _alt;
			enterOuterAlt(_localctx, 1);
			{
			setState(33);
			line();
			setState(38);
			_errHandler.sync(this);
			_alt = getInterpreter().adaptivePredict(_input,4,_ctx);
			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
				if ( _alt==1 ) {
					{
					setState(36);
					_errHandler.sync(this);
					switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) {
					case 1:
						{
						setState(34);
						line();
						}
						break;
					case 2:
						{
						setState(35);
						comment();
						}
						break;
					}
					} 
				}
				setState(40);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,4,_ctx);
			}
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class DocstingContext extends ParserRuleContext {
		public List comment() {
			return getRuleContexts(CommentContext.class);
		}
		public CommentContext comment(int i) {
			return getRuleContext(CommentContext.class,i);
		}
		public DocstingContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_docsting; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterDocsting(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitDocsting(this);
		}
	}

	public final DocstingContext docsting() throws RecognitionException {
		DocstingContext _localctx = new DocstingContext(_ctx, getState());
		enterRule(_localctx, 6, RULE_docsting);
		try {
			int _alt;
			enterOuterAlt(_localctx, 1);
			{
			setState(42); 
			_errHandler.sync(this);
			_alt = 1;
			do {
				switch (_alt) {
				case 1:
					{
					{
					setState(41);
					comment();
					}
					}
					break;
				default:
					throw new NoViableAltException(this);
				}
				setState(44); 
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,5,_ctx);
			} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class NameContext extends ParserRuleContext {
		public TerminalNode COMMENT_MARKER() { return getToken(YeSQLGrammarParser.COMMENT_MARKER, 0); }
		public TerminalNode NAME_TAG() { return getToken(YeSQLGrammarParser.NAME_TAG, 0); }
		public TerminalNode NON_WS() { return getToken(YeSQLGrammarParser.NON_WS, 0); }
		public TerminalNode NEWLINE() { return getToken(YeSQLGrammarParser.NEWLINE, 0); }
		public List WS() { return getTokens(YeSQLGrammarParser.WS); }
		public TerminalNode WS(int i) {
			return getToken(YeSQLGrammarParser.WS, i);
		}
		public NameContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_name; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterName(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitName(this);
		}
	}

	public final NameContext name() throws RecognitionException {
		NameContext _localctx = new NameContext(_ctx, getState());
		enterRule(_localctx, 8, RULE_name);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(47);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==WS) {
				{
				setState(46);
				match(WS);
				}
			}

			setState(49);
			match(COMMENT_MARKER);
			setState(51);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==WS) {
				{
				setState(50);
				match(WS);
				}
			}

			setState(53);
			match(NAME_TAG);
			setState(55);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==WS) {
				{
				setState(54);
				match(WS);
				}
			}

			setState(57);
			match(NON_WS);
			setState(59);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==WS) {
				{
				setState(58);
				match(WS);
				}
			}

			setState(61);
			match(NEWLINE);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class CommentContext extends ParserRuleContext {
		public TerminalNode COMMENT_MARKER() { return getToken(YeSQLGrammarParser.COMMENT_MARKER, 0); }
		public TerminalNode NEWLINE() { return getToken(YeSQLGrammarParser.NEWLINE, 0); }
		public TerminalNode NAME_TAG() { return getToken(YeSQLGrammarParser.NAME_TAG, 0); }
		public List WS() { return getTokens(YeSQLGrammarParser.WS); }
		public TerminalNode WS(int i) {
			return getToken(YeSQLGrammarParser.WS, i);
		}
		public List NON_WS() { return getTokens(YeSQLGrammarParser.NON_WS); }
		public TerminalNode NON_WS(int i) {
			return getToken(YeSQLGrammarParser.NON_WS, i);
		}
		public CommentContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_comment; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterComment(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitComment(this);
		}
	}

	public final CommentContext comment() throws RecognitionException {
		CommentContext _localctx = new CommentContext(_ctx, getState());
		enterRule(_localctx, 10, RULE_comment);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(64);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==WS) {
				{
				setState(63);
				match(WS);
				}
			}

			setState(66);
			match(COMMENT_MARKER);
			setState(68);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
			case 1:
				{
				setState(67);
				match(WS);
				}
				break;
			}
			setState(70);
			_la = _input.LA(1);
			if ( _la <= 0 || (_la==NAME_TAG) ) {
			_errHandler.recoverInline(this);
			}
			else {
				if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
				_errHandler.reportMatch(this);
				consume();
			}
			setState(72); 
			_errHandler.sync(this);
			_la = _input.LA(1);
			do {
				{
				{
				setState(71);
				_la = _input.LA(1);
				if ( !(_la==WS || _la==NON_WS) ) {
				_errHandler.recoverInline(this);
				}
				else {
					if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
					_errHandler.reportMatch(this);
					consume();
				}
				}
				}
				setState(74); 
				_errHandler.sync(this);
				_la = _input.LA(1);
			} while ( _la==WS || _la==NON_WS );
			setState(76);
			match(NEWLINE);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class LineContext extends ParserRuleContext {
		public TerminalNode NEWLINE() { return getToken(YeSQLGrammarParser.NEWLINE, 0); }
		public List COMMENT_MARKER() { return getTokens(YeSQLGrammarParser.COMMENT_MARKER); }
		public TerminalNode COMMENT_MARKER(int i) {
			return getToken(YeSQLGrammarParser.COMMENT_MARKER, i);
		}
		public List WS() { return getTokens(YeSQLGrammarParser.WS); }
		public TerminalNode WS(int i) {
			return getToken(YeSQLGrammarParser.WS, i);
		}
		public List NON_WS() { return getTokens(YeSQLGrammarParser.NON_WS); }
		public TerminalNode NON_WS(int i) {
			return getToken(YeSQLGrammarParser.NON_WS, i);
		}
		public LineContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_line; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterLine(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitLine(this);
		}
	}

	public final LineContext line() throws RecognitionException {
		LineContext _localctx = new LineContext(_ctx, getState());
		enterRule(_localctx, 12, RULE_line);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(79);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
			case 1:
				{
				setState(78);
				match(WS);
				}
				break;
			}
			setState(81);
			_la = _input.LA(1);
			if ( _la <= 0 || (_la==COMMENT_MARKER) ) {
			_errHandler.recoverInline(this);
			}
			else {
				if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
				_errHandler.reportMatch(this);
				consume();
			}
			setState(85);
			_errHandler.sync(this);
			_la = _input.LA(1);
			while (_la==WS || _la==NON_WS) {
				{
				{
				setState(82);
				_la = _input.LA(1);
				if ( !(_la==WS || _la==NON_WS) ) {
				_errHandler.recoverInline(this);
				}
				else {
					if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
					_errHandler.reportMatch(this);
					consume();
				}
				}
				}
				setState(87);
				_errHandler.sync(this);
				_la = _input.LA(1);
			}
			setState(95);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==COMMENT_MARKER) {
				{
				setState(88);
				match(COMMENT_MARKER);
				setState(92);
				_errHandler.sync(this);
				_la = _input.LA(1);
				while (_la==WS || _la==NON_WS) {
					{
					{
					setState(89);
					_la = _input.LA(1);
					if ( !(_la==WS || _la==NON_WS) ) {
					_errHandler.recoverInline(this);
					}
					else {
						if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
						_errHandler.reportMatch(this);
						consume();
					}
					}
					}
					setState(94);
					_errHandler.sync(this);
					_la = _input.LA(1);
				}
				}
			}

			setState(97);
			match(NEWLINE);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static class EmptylineContext extends ParserRuleContext {
		public TerminalNode NEWLINE() { return getToken(YeSQLGrammarParser.NEWLINE, 0); }
		public TerminalNode WS() { return getToken(YeSQLGrammarParser.WS, 0); }
		public EmptylineContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_emptyline; }
		@Override
		public void enterRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).enterEmptyline(this);
		}
		@Override
		public void exitRule(ParseTreeListener listener) {
			if ( listener instanceof YeSQLGrammarListener ) ((YeSQLGrammarListener)listener).exitEmptyline(this);
		}
	}

	public final EmptylineContext emptyline() throws RecognitionException {
		EmptylineContext _localctx = new EmptylineContext(_ctx, getState());
		enterRule(_localctx, 14, RULE_emptyline);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(100);
			_errHandler.sync(this);
			_la = _input.LA(1);
			if (_la==WS) {
				{
				setState(99);
				match(WS);
				}
			}

			setState(102);
			match(NEWLINE);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public static final String _serializedATN =
		"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\7k\4\2\t\2\4\3\t"+
		"\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\3\2\7\2\24\n\2\f\2"+
		"\16\2\27\13\2\3\2\3\2\3\3\5\3\34\n\3\3\3\3\3\5\3 \n\3\3\3\3\3\3\4\3\4"+
		"\3\4\7\4\'\n\4\f\4\16\4*\13\4\3\5\6\5-\n\5\r\5\16\5.\3\6\5\6\62\n\6\3"+
		"\6\3\6\5\6\66\n\6\3\6\3\6\5\6:\n\6\3\6\3\6\5\6>\n\6\3\6\3\6\3\7\5\7C\n"+
		"\7\3\7\3\7\5\7G\n\7\3\7\3\7\6\7K\n\7\r\7\16\7L\3\7\3\7\3\b\5\bR\n\b\3"+
		"\b\3\b\7\bV\n\b\f\b\16\bY\13\b\3\b\3\b\7\b]\n\b\f\b\16\b`\13\b\5\bb\n"+
		"\b\3\b\3\b\3\t\5\tg\n\t\3\t\3\t\3\t\2\2\n\2\4\6\b\n\f\16\20\2\5\3\2\3"+
		"\3\3\2\6\7\3\2\4\4\2t\2\25\3\2\2\2\4\33\3\2\2\2\6#\3\2\2\2\b,\3\2\2\2"+
		"\n\61\3\2\2\2\fB\3\2\2\2\16Q\3\2\2\2\20f\3\2\2\2\22\24\5\4\3\2\23\22\3"+
		"\2\2\2\24\27\3\2\2\2\25\23\3\2\2\2\25\26\3\2\2\2\26\30\3\2\2\2\27\25\3"+
		"\2\2\2\30\31\7\2\2\3\31\3\3\2\2\2\32\34\5\b\5\2\33\32\3\2\2\2\33\34\3"+
		"\2\2\2\34\35\3\2\2\2\35\37\5\n\6\2\36 \5\b\5\2\37\36\3\2\2\2\37 \3\2\2"+
		"\2 !\3\2\2\2!\"\5\6\4\2\"\5\3\2\2\2#(\5\16\b\2$\'\5\16\b\2%\'\5\f\7\2"+
		"&$\3\2\2\2&%\3\2\2\2\'*\3\2\2\2(&\3\2\2\2()\3\2\2\2)\7\3\2\2\2*(\3\2\2"+
		"\2+-\5\f\7\2,+\3\2\2\2-.\3\2\2\2.,\3\2\2\2./\3\2\2\2/\t\3\2\2\2\60\62"+
		"\7\6\2\2\61\60\3\2\2\2\61\62\3\2\2\2\62\63\3\2\2\2\63\65\7\4\2\2\64\66"+
		"\7\6\2\2\65\64\3\2\2\2\65\66\3\2\2\2\66\67\3\2\2\2\679\7\3\2\28:\7\6\2"+
		"\298\3\2\2\29:\3\2\2\2:;\3\2\2\2;=\7\7\2\2<>\7\6\2\2=<\3\2\2\2=>\3\2\2"+
		"\2>?\3\2\2\2?@\7\5\2\2@\13\3\2\2\2AC\7\6\2\2BA\3\2\2\2BC\3\2\2\2CD\3\2"+
		"\2\2DF\7\4\2\2EG\7\6\2\2FE\3\2\2\2FG\3\2\2\2GH\3\2\2\2HJ\n\2\2\2IK\t\3"+
		"\2\2JI\3\2\2\2KL\3\2\2\2LJ\3\2\2\2LM\3\2\2\2MN\3\2\2\2NO\7\5\2\2O\r\3"+
		"\2\2\2PR\7\6\2\2QP\3\2\2\2QR\3\2\2\2RS\3\2\2\2SW\n\4\2\2TV\t\3\2\2UT\3"+
		"\2\2\2VY\3\2\2\2WU\3\2\2\2WX\3\2\2\2Xa\3\2\2\2YW\3\2\2\2Z^\7\4\2\2[]\t"+
		"\3\2\2\\[\3\2\2\2]`\3\2\2\2^\\\3\2\2\2^_\3\2\2\2_b\3\2\2\2`^\3\2\2\2a"+
		"Z\3\2\2\2ab\3\2\2\2bc\3\2\2\2cd\7\5\2\2d\17\3\2\2\2eg\7\6\2\2fe\3\2\2"+
		"\2fg\3\2\2\2gh\3\2\2\2hi\7\5\2\2i\21\3\2\2\2\24\25\33\37&(.\61\659=BF"+
		"LQW^af";
	public static final ATN _ATN =
		new ATNDeserializer().deserialize(_serializedATN.toCharArray());
	static {
		_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
		for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
			_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy