Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.jsfr.json.compiler.JsonPathParser Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2019 WANG Lingsong
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
// Generated from JsonPath.g4 by ANTLR 4.7.1
package org.jsfr.json.compiler;
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 JsonPathParser extends Parser {
static { RuntimeMetaData.checkVersion("4.7.1", RuntimeMetaData.VERSION); }
protected static final DFA[] _decisionToDFA;
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, T__5=6, T__6=7, T__7=8, T__8=9,
T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17,
T__17=18, COLON=19, NegationOperator=20, AndOperator=21, OrOperator=22,
NUM=23, QUOTED_STRING=24, REGEX=25, BOOL=26, KEY=27, WS=28;
public static final int
RULE_path = 0, RULE_relativePath = 1, RULE_searchChild = 2, RULE_search = 3,
RULE_anyChild = 4, RULE_anyIndex = 5, RULE_any = 6, RULE_index = 7, RULE_indexes = 8,
RULE_slicing = 9, RULE_childNode = 10, RULE_childrenNode = 11, RULE_filter = 12,
RULE_filterExpr = 13, RULE_filterExist = 14, RULE_filterGtNum = 15, RULE_filterLtNum = 16,
RULE_filterEqualNum = 17, RULE_filterEqualBool = 18, RULE_filterEqualStr = 19,
RULE_filterMatchRegex = 20;
public static final String[] ruleNames = {
"path", "relativePath", "searchChild", "search", "anyChild", "anyIndex",
"any", "index", "indexes", "slicing", "childNode", "childrenNode", "filter",
"filterExpr", "filterExist", "filterGtNum", "filterLtNum", "filterEqualNum",
"filterEqualBool", "filterEqualStr", "filterMatchRegex"
};
private static final String[] _LITERAL_NAMES = {
null, "'$'", "'..'", "'.*'", "'[*]'", "'*'", "'['", "']'", "','", "'.'",
"'[?('", "')]'", "'('", "')'", "'@'", "'>'", "'<'", "'=='", "'=~'", "':'",
"'!'", "'&&'", "'||'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, "COLON", "NegationOperator",
"AndOperator", "OrOperator", "NUM", "QUOTED_STRING", "REGEX", "BOOL",
"KEY", "WS"
};
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 "JsonPath.g4"; }
@Override
public String[] getRuleNames() { return ruleNames; }
@Override
public String getSerializedATN() { return _serializedATN; }
@Override
public ATN getATN() { return _ATN; }
public JsonPathParser(TokenStream input) {
super(input);
_interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
}
public static class PathContext extends ParserRuleContext {
public TerminalNode EOF() { return getToken(JsonPathParser.EOF, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public PathContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_path; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitPath(this);
else return visitor.visitChildren(this);
}
}
public final PathContext path() throws RecognitionException {
PathContext _localctx = new PathContext(_ctx, getState());
enterRule(_localctx, 0, RULE_path);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(42);
match(T__0);
setState(46);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0)) {
{
{
setState(43);
relativePath();
}
}
setState(48);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(49);
match(EOF);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class RelativePathContext extends ParserRuleContext {
public SearchChildContext searchChild() {
return getRuleContext(SearchChildContext.class,0);
}
public SearchContext search() {
return getRuleContext(SearchContext.class,0);
}
public IndexContext index() {
return getRuleContext(IndexContext.class,0);
}
public IndexesContext indexes() {
return getRuleContext(IndexesContext.class,0);
}
public SlicingContext slicing() {
return getRuleContext(SlicingContext.class,0);
}
public ChildNodeContext childNode() {
return getRuleContext(ChildNodeContext.class,0);
}
public ChildrenNodeContext childrenNode() {
return getRuleContext(ChildrenNodeContext.class,0);
}
public AnyChildContext anyChild() {
return getRuleContext(AnyChildContext.class,0);
}
public AnyIndexContext anyIndex() {
return getRuleContext(AnyIndexContext.class,0);
}
public AnyContext any() {
return getRuleContext(AnyContext.class,0);
}
public FilterContext filter() {
return getRuleContext(FilterContext.class,0);
}
public RelativePathContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_relativePath; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitRelativePath(this);
else return visitor.visitChildren(this);
}
}
public final RelativePathContext relativePath() throws RecognitionException {
RelativePathContext _localctx = new RelativePathContext(_ctx, getState());
enterRule(_localctx, 2, RULE_relativePath);
try {
setState(62);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
setState(51);
searchChild();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
setState(52);
search();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
setState(53);
index();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
setState(54);
indexes();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
setState(55);
slicing();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
setState(56);
childNode();
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
setState(57);
childrenNode();
}
break;
case 8:
enterOuterAlt(_localctx, 8);
{
setState(58);
anyChild();
}
break;
case 9:
enterOuterAlt(_localctx, 9);
{
setState(59);
anyIndex();
}
break;
case 10:
enterOuterAlt(_localctx, 10);
{
setState(60);
any();
}
break;
case 11:
enterOuterAlt(_localctx, 11);
{
setState(61);
filter();
}
break;
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class SearchChildContext extends ParserRuleContext {
public TerminalNode KEY() { return getToken(JsonPathParser.KEY, 0); }
public SearchChildContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_searchChild; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitSearchChild(this);
else return visitor.visitChildren(this);
}
}
public final SearchChildContext searchChild() throws RecognitionException {
SearchChildContext _localctx = new SearchChildContext(_ctx, getState());
enterRule(_localctx, 4, RULE_searchChild);
try {
enterOuterAlt(_localctx, 1);
{
setState(64);
match(T__1);
setState(65);
match(KEY);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class SearchContext extends ParserRuleContext {
public SearchContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_search; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitSearch(this);
else return visitor.visitChildren(this);
}
}
public final SearchContext search() throws RecognitionException {
SearchContext _localctx = new SearchContext(_ctx, getState());
enterRule(_localctx, 6, RULE_search);
try {
enterOuterAlt(_localctx, 1);
{
setState(67);
match(T__1);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class AnyChildContext extends ParserRuleContext {
public AnyChildContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_anyChild; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitAnyChild(this);
else return visitor.visitChildren(this);
}
}
public final AnyChildContext anyChild() throws RecognitionException {
AnyChildContext _localctx = new AnyChildContext(_ctx, getState());
enterRule(_localctx, 8, RULE_anyChild);
try {
enterOuterAlt(_localctx, 1);
{
setState(69);
match(T__2);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class AnyIndexContext extends ParserRuleContext {
public AnyIndexContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_anyIndex; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitAnyIndex(this);
else return visitor.visitChildren(this);
}
}
public final AnyIndexContext anyIndex() throws RecognitionException {
AnyIndexContext _localctx = new AnyIndexContext(_ctx, getState());
enterRule(_localctx, 10, RULE_anyIndex);
try {
enterOuterAlt(_localctx, 1);
{
setState(71);
match(T__3);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class AnyContext extends ParserRuleContext {
public AnyContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_any; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitAny(this);
else return visitor.visitChildren(this);
}
}
public final AnyContext any() throws RecognitionException {
AnyContext _localctx = new AnyContext(_ctx, getState());
enterRule(_localctx, 12, RULE_any);
try {
enterOuterAlt(_localctx, 1);
{
setState(73);
match(T__4);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class IndexContext extends ParserRuleContext {
public TerminalNode NUM() { return getToken(JsonPathParser.NUM, 0); }
public IndexContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_index; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitIndex(this);
else return visitor.visitChildren(this);
}
}
public final IndexContext index() throws RecognitionException {
IndexContext _localctx = new IndexContext(_ctx, getState());
enterRule(_localctx, 14, RULE_index);
try {
enterOuterAlt(_localctx, 1);
{
setState(75);
match(T__5);
setState(76);
match(NUM);
setState(77);
match(T__6);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class IndexesContext extends ParserRuleContext {
public List NUM() { return getTokens(JsonPathParser.NUM); }
public TerminalNode NUM(int i) {
return getToken(JsonPathParser.NUM, i);
}
public IndexesContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_indexes; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitIndexes(this);
else return visitor.visitChildren(this);
}
}
public final IndexesContext indexes() throws RecognitionException {
IndexesContext _localctx = new IndexesContext(_ctx, getState());
enterRule(_localctx, 16, RULE_indexes);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(79);
match(T__5);
setState(80);
match(NUM);
setState(85);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__7) {
{
{
setState(81);
match(T__7);
setState(82);
match(NUM);
}
}
setState(87);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(88);
match(T__6);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class SlicingContext extends ParserRuleContext {
public TerminalNode COLON() { return getToken(JsonPathParser.COLON, 0); }
public List NUM() { return getTokens(JsonPathParser.NUM); }
public TerminalNode NUM(int i) {
return getToken(JsonPathParser.NUM, i);
}
public SlicingContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_slicing; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitSlicing(this);
else return visitor.visitChildren(this);
}
}
public final SlicingContext slicing() throws RecognitionException {
SlicingContext _localctx = new SlicingContext(_ctx, getState());
enterRule(_localctx, 18, RULE_slicing);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(90);
match(T__5);
setState(92);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NUM) {
{
setState(91);
match(NUM);
}
}
setState(94);
match(COLON);
setState(96);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NUM) {
{
setState(95);
match(NUM);
}
}
setState(98);
match(T__6);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class ChildNodeContext extends ParserRuleContext {
public TerminalNode KEY() { return getToken(JsonPathParser.KEY, 0); }
public ChildNodeContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_childNode; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitChildNode(this);
else return visitor.visitChildren(this);
}
}
public final ChildNodeContext childNode() throws RecognitionException {
ChildNodeContext _localctx = new ChildNodeContext(_ctx, getState());
enterRule(_localctx, 20, RULE_childNode);
try {
enterOuterAlt(_localctx, 1);
{
setState(100);
match(T__8);
setState(101);
match(KEY);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class ChildrenNodeContext extends ParserRuleContext {
public List QUOTED_STRING() { return getTokens(JsonPathParser.QUOTED_STRING); }
public TerminalNode QUOTED_STRING(int i) {
return getToken(JsonPathParser.QUOTED_STRING, i);
}
public ChildrenNodeContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_childrenNode; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitChildrenNode(this);
else return visitor.visitChildren(this);
}
}
public final ChildrenNodeContext childrenNode() throws RecognitionException {
ChildrenNodeContext _localctx = new ChildrenNodeContext(_ctx, getState());
enterRule(_localctx, 22, RULE_childrenNode);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(103);
match(T__5);
setState(104);
match(QUOTED_STRING);
setState(109);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__7) {
{
{
setState(105);
match(T__7);
setState(106);
match(QUOTED_STRING);
}
}
setState(111);
_errHandler.sync(this);
_la = _input.LA(1);
}
setState(112);
match(T__6);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterContext extends ParserRuleContext {
public FilterExprContext filterExpr() {
return getRuleContext(FilterExprContext.class,0);
}
public FilterContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filter; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilter(this);
else return visitor.visitChildren(this);
}
}
public final FilterContext filter() throws RecognitionException {
FilterContext _localctx = new FilterContext(_ctx, getState());
enterRule(_localctx, 24, RULE_filter);
try {
enterOuterAlt(_localctx, 1);
{
setState(114);
match(T__9);
setState(115);
filterExpr(0);
setState(116);
match(T__10);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterExprContext extends ParserRuleContext {
public TerminalNode NegationOperator() { return getToken(JsonPathParser.NegationOperator, 0); }
public List filterExpr() {
return getRuleContexts(FilterExprContext.class);
}
public FilterExprContext filterExpr(int i) {
return getRuleContext(FilterExprContext.class,i);
}
public FilterEqualNumContext filterEqualNum() {
return getRuleContext(FilterEqualNumContext.class,0);
}
public FilterEqualStrContext filterEqualStr() {
return getRuleContext(FilterEqualStrContext.class,0);
}
public FilterMatchRegexContext filterMatchRegex() {
return getRuleContext(FilterMatchRegexContext.class,0);
}
public FilterEqualBoolContext filterEqualBool() {
return getRuleContext(FilterEqualBoolContext.class,0);
}
public FilterGtNumContext filterGtNum() {
return getRuleContext(FilterGtNumContext.class,0);
}
public FilterLtNumContext filterLtNum() {
return getRuleContext(FilterLtNumContext.class,0);
}
public FilterExistContext filterExist() {
return getRuleContext(FilterExistContext.class,0);
}
public TerminalNode AndOperator() { return getToken(JsonPathParser.AndOperator, 0); }
public TerminalNode OrOperator() { return getToken(JsonPathParser.OrOperator, 0); }
public FilterExprContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterExpr; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterExpr(this);
else return visitor.visitChildren(this);
}
}
public final FilterExprContext filterExpr() throws RecognitionException {
return filterExpr(0);
}
private FilterExprContext filterExpr(int _p) throws RecognitionException {
ParserRuleContext _parentctx = _ctx;
int _parentState = getState();
FilterExprContext _localctx = new FilterExprContext(_ctx, _parentState);
FilterExprContext _prevctx = _localctx;
int _startState = 26;
enterRecursionRule(_localctx, 26, RULE_filterExpr, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
setState(131);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
case 1:
{
setState(119);
match(NegationOperator);
setState(120);
match(T__11);
setState(121);
filterExpr(0);
setState(122);
match(T__12);
}
break;
case 2:
{
setState(124);
filterEqualNum();
}
break;
case 3:
{
setState(125);
filterEqualStr();
}
break;
case 4:
{
setState(126);
filterMatchRegex();
}
break;
case 5:
{
setState(127);
filterEqualBool();
}
break;
case 6:
{
setState(128);
filterGtNum();
}
break;
case 7:
{
setState(129);
filterLtNum();
}
break;
case 8:
{
setState(130);
filterExist();
}
break;
}
_ctx.stop = _input.LT(-1);
setState(141);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
setState(139);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
case 1:
{
_localctx = new FilterExprContext(_parentctx, _parentState);
pushNewRecursionContext(_localctx, _startState, RULE_filterExpr);
setState(133);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
setState(134);
match(AndOperator);
setState(135);
filterExpr(10);
}
break;
case 2:
{
_localctx = new FilterExprContext(_parentctx, _parentState);
pushNewRecursionContext(_localctx, _startState, RULE_filterExpr);
setState(136);
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
setState(137);
match(OrOperator);
setState(138);
filterExpr(9);
}
break;
}
}
}
setState(143);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
}
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
unrollRecursionContexts(_parentctx);
}
return _localctx;
}
public static class FilterExistContext extends ParserRuleContext {
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterExistContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterExist; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterExist(this);
else return visitor.visitChildren(this);
}
}
public final FilterExistContext filterExist() throws RecognitionException {
FilterExistContext _localctx = new FilterExistContext(_ctx, getState());
enterRule(_localctx, 28, RULE_filterExist);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
setState(144);
match(T__13);
setState(146);
_errHandler.sync(this);
_alt = 1;
do {
switch (_alt) {
case 1:
{
{
setState(145);
relativePath();
}
}
break;
default:
throw new NoViableAltException(this);
}
setState(148);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,9,_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 FilterGtNumContext extends ParserRuleContext {
public TerminalNode NUM() { return getToken(JsonPathParser.NUM, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterGtNumContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterGtNum; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterGtNum(this);
else return visitor.visitChildren(this);
}
}
public final FilterGtNumContext filterGtNum() throws RecognitionException {
FilterGtNumContext _localctx = new FilterGtNumContext(_ctx, getState());
enterRule(_localctx, 30, RULE_filterGtNum);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(150);
match(T__13);
setState(152);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(151);
relativePath();
}
}
setState(154);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0) );
setState(156);
match(T__14);
setState(157);
match(NUM);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterLtNumContext extends ParserRuleContext {
public TerminalNode NUM() { return getToken(JsonPathParser.NUM, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterLtNumContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterLtNum; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterLtNum(this);
else return visitor.visitChildren(this);
}
}
public final FilterLtNumContext filterLtNum() throws RecognitionException {
FilterLtNumContext _localctx = new FilterLtNumContext(_ctx, getState());
enterRule(_localctx, 32, RULE_filterLtNum);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(159);
match(T__13);
setState(161);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(160);
relativePath();
}
}
setState(163);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0) );
setState(165);
match(T__15);
setState(166);
match(NUM);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterEqualNumContext extends ParserRuleContext {
public TerminalNode NUM() { return getToken(JsonPathParser.NUM, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterEqualNumContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterEqualNum; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterEqualNum(this);
else return visitor.visitChildren(this);
}
}
public final FilterEqualNumContext filterEqualNum() throws RecognitionException {
FilterEqualNumContext _localctx = new FilterEqualNumContext(_ctx, getState());
enterRule(_localctx, 34, RULE_filterEqualNum);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(168);
match(T__13);
setState(170);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(169);
relativePath();
}
}
setState(172);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0) );
setState(174);
match(T__16);
setState(175);
match(NUM);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterEqualBoolContext extends ParserRuleContext {
public TerminalNode BOOL() { return getToken(JsonPathParser.BOOL, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterEqualBoolContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterEqualBool; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterEqualBool(this);
else return visitor.visitChildren(this);
}
}
public final FilterEqualBoolContext filterEqualBool() throws RecognitionException {
FilterEqualBoolContext _localctx = new FilterEqualBoolContext(_ctx, getState());
enterRule(_localctx, 36, RULE_filterEqualBool);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(177);
match(T__13);
setState(179);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(178);
relativePath();
}
}
setState(181);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0) );
setState(183);
match(T__16);
setState(184);
match(BOOL);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterEqualStrContext extends ParserRuleContext {
public TerminalNode QUOTED_STRING() { return getToken(JsonPathParser.QUOTED_STRING, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterEqualStrContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterEqualStr; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterEqualStr(this);
else return visitor.visitChildren(this);
}
}
public final FilterEqualStrContext filterEqualStr() throws RecognitionException {
FilterEqualStrContext _localctx = new FilterEqualStrContext(_ctx, getState());
enterRule(_localctx, 38, RULE_filterEqualStr);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(186);
match(T__13);
setState(188);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(187);
relativePath();
}
}
setState(190);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0) );
setState(192);
match(T__16);
setState(193);
match(QUOTED_STRING);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class FilterMatchRegexContext extends ParserRuleContext {
public TerminalNode REGEX() { return getToken(JsonPathParser.REGEX, 0); }
public List relativePath() {
return getRuleContexts(RelativePathContext.class);
}
public RelativePathContext relativePath(int i) {
return getRuleContext(RelativePathContext.class,i);
}
public FilterMatchRegexContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_filterMatchRegex; }
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
if ( visitor instanceof JsonPathVisitor ) return ((JsonPathVisitor extends T>)visitor).visitFilterMatchRegex(this);
else return visitor.visitChildren(this);
}
}
public final FilterMatchRegexContext filterMatchRegex() throws RecognitionException {
FilterMatchRegexContext _localctx = new FilterMatchRegexContext(_ctx, getState());
enterRule(_localctx, 40, RULE_filterMatchRegex);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(195);
match(T__13);
setState(197);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
setState(196);
relativePath();
}
}
setState(199);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__8) | (1L << T__9))) != 0) );
setState(201);
match(T__17);
setState(202);
match(REGEX);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
switch (ruleIndex) {
case 13:
return filterExpr_sempred((FilterExprContext)_localctx, predIndex);
}
return true;
}
private boolean filterExpr_sempred(FilterExprContext _localctx, int predIndex) {
switch (predIndex) {
case 0:
return precpred(_ctx, 9);
case 1:
return precpred(_ctx, 8);
}
return true;
}
public static final String _serializedATN =
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\36\u00cf\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\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\3\2\3\2\7\2/\n\2\f\2\16\2\62"+
"\13\2\3\2\3\2\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\5\3A\n\3\3\4"+
"\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3"+
"\n\7\nV\n\n\f\n\16\nY\13\n\3\n\3\n\3\13\3\13\5\13_\n\13\3\13\3\13\5\13"+
"c\n\13\3\13\3\13\3\f\3\f\3\f\3\r\3\r\3\r\3\r\7\rn\n\r\f\r\16\rq\13\r\3"+
"\r\3\r\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17"+
"\3\17\3\17\3\17\3\17\5\17\u0086\n\17\3\17\3\17\3\17\3\17\3\17\3\17\7\17"+
"\u008e\n\17\f\17\16\17\u0091\13\17\3\20\3\20\6\20\u0095\n\20\r\20\16\20"+
"\u0096\3\21\3\21\6\21\u009b\n\21\r\21\16\21\u009c\3\21\3\21\3\21\3\22"+
"\3\22\6\22\u00a4\n\22\r\22\16\22\u00a5\3\22\3\22\3\22\3\23\3\23\6\23\u00ad"+
"\n\23\r\23\16\23\u00ae\3\23\3\23\3\23\3\24\3\24\6\24\u00b6\n\24\r\24\16"+
"\24\u00b7\3\24\3\24\3\24\3\25\3\25\6\25\u00bf\n\25\r\25\16\25\u00c0\3"+
"\25\3\25\3\25\3\26\3\26\6\26\u00c8\n\26\r\26\16\26\u00c9\3\26\3\26\3\26"+
"\3\26\2\3\34\27\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*\2\2\2\u00d8"+
"\2,\3\2\2\2\4@\3\2\2\2\6B\3\2\2\2\bE\3\2\2\2\nG\3\2\2\2\fI\3\2\2\2\16"+
"K\3\2\2\2\20M\3\2\2\2\22Q\3\2\2\2\24\\\3\2\2\2\26f\3\2\2\2\30i\3\2\2\2"+
"\32t\3\2\2\2\34\u0085\3\2\2\2\36\u0092\3\2\2\2 \u0098\3\2\2\2\"\u00a1"+
"\3\2\2\2$\u00aa\3\2\2\2&\u00b3\3\2\2\2(\u00bc\3\2\2\2*\u00c5\3\2\2\2,"+
"\60\7\3\2\2-/\5\4\3\2.-\3\2\2\2/\62\3\2\2\2\60.\3\2\2\2\60\61\3\2\2\2"+
"\61\63\3\2\2\2\62\60\3\2\2\2\63\64\7\2\2\3\64\3\3\2\2\2\65A\5\6\4\2\66"+
"A\5\b\5\2\67A\5\20\t\28A\5\22\n\29A\5\24\13\2:A\5\26\f\2;A\5\30\r\2A\5\16\b\2?A\5\32\16\2@\65\3\2\2\2@\66\3\2\2\2@\67"+
"\3\2\2\2@8\3\2\2\2@9\3\2\2\2@:\3\2\2\2@;\3\2\2\2@<\3\2\2\2@=\3\2\2\2@"+
">\3\2\2\2@?\3\2\2\2A\5\3\2\2\2BC\7\4\2\2CD\7\35\2\2D\7\3\2\2\2EF\7\4\2"+
"\2F\t\3\2\2\2GH\7\5\2\2H\13\3\2\2\2IJ\7\6\2\2J\r\3\2\2\2KL\7\7\2\2L\17"+
"\3\2\2\2MN\7\b\2\2NO\7\31\2\2OP\7\t\2\2P\21\3\2\2\2QR\7\b\2\2RW\7\31\2"+
"\2ST\7\n\2\2TV\7\31\2\2US\3\2\2\2VY\3\2\2\2WU\3\2\2\2WX\3\2\2\2XZ\3\2"+
"\2\2YW\3\2\2\2Z[\7\t\2\2[\23\3\2\2\2\\^\7\b\2\2]_\7\31\2\2^]\3\2\2\2^"+
"_\3\2\2\2_`\3\2\2\2`b\7\25\2\2ac\7\31\2\2ba\3\2\2\2bc\3\2\2\2cd\3\2\2"+
"\2de\7\t\2\2e\25\3\2\2\2fg\7\13\2\2gh\7\35\2\2h\27\3\2\2\2ij\7\b\2\2j"+
"o\7\32\2\2kl\7\n\2\2ln\7\32\2\2mk\3\2\2\2nq\3\2\2\2om\3\2\2\2op\3\2\2"+
"\2pr\3\2\2\2qo\3\2\2\2rs\7\t\2\2s\31\3\2\2\2tu\7\f\2\2uv\5\34\17\2vw\7"+
"\r\2\2w\33\3\2\2\2xy\b\17\1\2yz\7\26\2\2z{\7\16\2\2{|\5\34\17\2|}\7\17"+
"\2\2}\u0086\3\2\2\2~\u0086\5$\23\2\177\u0086\5(\25\2\u0080\u0086\5*\26"+
"\2\u0081\u0086\5&\24\2\u0082\u0086\5 \21\2\u0083\u0086\5\"\22\2\u0084"+
"\u0086\5\36\20\2\u0085x\3\2\2\2\u0085~\3\2\2\2\u0085\177\3\2\2\2\u0085"+
"\u0080\3\2\2\2\u0085\u0081\3\2\2\2\u0085\u0082\3\2\2\2\u0085\u0083\3\2"+
"\2\2\u0085\u0084\3\2\2\2\u0086\u008f\3\2\2\2\u0087\u0088\f\13\2\2\u0088"+
"\u0089\7\27\2\2\u0089\u008e\5\34\17\f\u008a\u008b\f\n\2\2\u008b\u008c"+
"\7\30\2\2\u008c\u008e\5\34\17\13\u008d\u0087\3\2\2\2\u008d\u008a\3\2\2"+
"\2\u008e\u0091\3\2\2\2\u008f\u008d\3\2\2\2\u008f\u0090\3\2\2\2\u0090\35"+
"\3\2\2\2\u0091\u008f\3\2\2\2\u0092\u0094\7\20\2\2\u0093\u0095\5\4\3\2"+
"\u0094\u0093\3\2\2\2\u0095\u0096\3\2\2\2\u0096\u0094\3\2\2\2\u0096\u0097"+
"\3\2\2\2\u0097\37\3\2\2\2\u0098\u009a\7\20\2\2\u0099\u009b\5\4\3\2\u009a"+
"\u0099\3\2\2\2\u009b\u009c\3\2\2\2\u009c\u009a\3\2\2\2\u009c\u009d\3\2"+
"\2\2\u009d\u009e\3\2\2\2\u009e\u009f\7\21\2\2\u009f\u00a0\7\31\2\2\u00a0"+
"!\3\2\2\2\u00a1\u00a3\7\20\2\2\u00a2\u00a4\5\4\3\2\u00a3\u00a2\3\2\2\2"+
"\u00a4\u00a5\3\2\2\2\u00a5\u00a3\3\2\2\2\u00a5\u00a6\3\2\2\2\u00a6\u00a7"+
"\3\2\2\2\u00a7\u00a8\7\22\2\2\u00a8\u00a9\7\31\2\2\u00a9#\3\2\2\2\u00aa"+
"\u00ac\7\20\2\2\u00ab\u00ad\5\4\3\2\u00ac\u00ab\3\2\2\2\u00ad\u00ae\3"+
"\2\2\2\u00ae\u00ac\3\2\2\2\u00ae\u00af\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0"+
"\u00b1\7\23\2\2\u00b1\u00b2\7\31\2\2\u00b2%\3\2\2\2\u00b3\u00b5\7\20\2"+
"\2\u00b4\u00b6\5\4\3\2\u00b5\u00b4\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00b5"+
"\3\2\2\2\u00b7\u00b8\3\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\u00ba\7\23\2\2"+
"\u00ba\u00bb\7\34\2\2\u00bb\'\3\2\2\2\u00bc\u00be\7\20\2\2\u00bd\u00bf"+
"\5\4\3\2\u00be\u00bd\3\2\2\2\u00bf\u00c0\3\2\2\2\u00c0\u00be\3\2\2\2\u00c0"+
"\u00c1\3\2\2\2\u00c1\u00c2\3\2\2\2\u00c2\u00c3\7\23\2\2\u00c3\u00c4\7"+
"\32\2\2\u00c4)\3\2\2\2\u00c5\u00c7\7\20\2\2\u00c6\u00c8\5\4\3\2\u00c7"+
"\u00c6\3\2\2\2\u00c8\u00c9\3\2\2\2\u00c9\u00c7\3\2\2\2\u00c9\u00ca\3\2"+
"\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00cc\7\24\2\2\u00cc\u00cd\7\33\2\2\u00cd"+
"+\3\2\2\2\22\60@W^bo\u0085\u008d\u008f\u0096\u009c\u00a5\u00ae\u00b7\u00c0"+
"\u00c9";
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);
}
}
}