prompto.utils.ArgsParser Maven / Gradle / Ivy
The newest version!
// Generated from ArgsParser.g4 by ANTLR 4.9.2
package prompto.utils;
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 ArgsParser extends Parser {
static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); }
protected static final DFA[] _decisionToDFA;
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
STRING=1, EQUALS=2, DASH=3, WS=4, ELEMENT=5;
public static final int
RULE_parse = 0, RULE_entry = 1, RULE_key = 2, RULE_value = 3;
private static String[] makeRuleNames() {
return new String[] {
"parse", "entry", "key", "value"
};
}
public static final String[] ruleNames = makeRuleNames();
private static String[] makeLiteralNames() {
return new String[] {
null, null, "'='", "'-'", "' '"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "STRING", "EQUALS", "DASH", "WS", "ELEMENT"
};
}
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 "ArgsParser.g4"; }
@Override
public String[] getRuleNames() { return ruleNames; }
@Override
public String getSerializedATN() { return _serializedATN; }
@Override
public ATN getATN() { return _ATN; }
public ArgsParser(TokenStream input) {
super(input);
_interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
}
public static class ParseContext extends ParserRuleContext {
public EntryContext e;
public List entry() {
return getRuleContexts(EntryContext.class);
}
public EntryContext entry(int i) {
return getRuleContext(EntryContext.class,i);
}
public ParseContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_parse; }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).enterParse(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).exitParse(this);
}
}
public final ParseContext parse() throws RecognitionException {
ParseContext _localctx = new ParseContext(_ctx, getState());
enterRule(_localctx, 0, RULE_parse);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(11);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==DASH || _la==ELEMENT) {
{
{
setState(8);
((ParseContext)_localctx).e = entry();
}
}
setState(13);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class EntryContext extends ParserRuleContext {
public KeyContext k;
public ValueContext v;
public TerminalNode EQUALS() { return getToken(ArgsParser.EQUALS, 0); }
public KeyContext key() {
return getRuleContext(KeyContext.class,0);
}
public ValueContext value() {
return getRuleContext(ValueContext.class,0);
}
public TerminalNode DASH() { return getToken(ArgsParser.DASH, 0); }
public EntryContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_entry; }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).enterEntry(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).exitEntry(this);
}
}
public final EntryContext entry() throws RecognitionException {
EntryContext _localctx = new EntryContext(_ctx, getState());
enterRule(_localctx, 2, RULE_entry);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
setState(15);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==DASH) {
{
setState(14);
match(DASH);
}
}
setState(17);
((EntryContext)_localctx).k = key();
setState(18);
match(EQUALS);
setState(19);
((EntryContext)_localctx).v = value();
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class KeyContext extends ParserRuleContext {
public TerminalNode ELEMENT() { return getToken(ArgsParser.ELEMENT, 0); }
public KeyContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_key; }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).enterKey(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).exitKey(this);
}
}
public final KeyContext key() throws RecognitionException {
KeyContext _localctx = new KeyContext(_ctx, getState());
enterRule(_localctx, 4, RULE_key);
try {
enterOuterAlt(_localctx, 1);
{
setState(21);
match(ELEMENT);
}
}
catch (RecognitionException re) {
_localctx.exception = re;
_errHandler.reportError(this, re);
_errHandler.recover(this, re);
}
finally {
exitRule();
}
return _localctx;
}
public static class ValueContext extends ParserRuleContext {
public ValueContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_value; }
public ValueContext() { }
public void copyFrom(ValueContext ctx) {
super.copyFrom(ctx);
}
}
public static class ELEMENTContext extends ValueContext {
public TerminalNode ELEMENT() { return getToken(ArgsParser.ELEMENT, 0); }
public ELEMENTContext(ValueContext ctx) { copyFrom(ctx); }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).enterELEMENT(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).exitELEMENT(this);
}
}
public static class STRINGContext extends ValueContext {
public TerminalNode STRING() { return getToken(ArgsParser.STRING, 0); }
public STRINGContext(ValueContext ctx) { copyFrom(ctx); }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).enterSTRING(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof ArgsParserListener ) ((ArgsParserListener)listener).exitSTRING(this);
}
}
public final ValueContext value() throws RecognitionException {
ValueContext _localctx = new ValueContext(_ctx, getState());
enterRule(_localctx, 6, RULE_value);
try {
setState(25);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ELEMENT:
_localctx = new ELEMENTContext(_localctx);
enterOuterAlt(_localctx, 1);
{
setState(23);
match(ELEMENT);
}
break;
case STRING:
_localctx = new STRINGContext(_localctx);
enterOuterAlt(_localctx, 2);
{
setState(24);
match(STRING);
}
break;
default:
throw new NoViableAltException(this);
}
}
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\7\36\4\2\t\2\4\3"+
"\t\3\4\4\t\4\4\5\t\5\3\2\7\2\f\n\2\f\2\16\2\17\13\2\3\3\5\3\22\n\3\3\3"+
"\3\3\3\3\3\3\3\4\3\4\3\5\3\5\5\5\34\n\5\3\5\2\2\6\2\4\6\b\2\2\2\34\2\r"+
"\3\2\2\2\4\21\3\2\2\2\6\27\3\2\2\2\b\33\3\2\2\2\n\f\5\4\3\2\13\n\3\2\2"+
"\2\f\17\3\2\2\2\r\13\3\2\2\2\r\16\3\2\2\2\16\3\3\2\2\2\17\r\3\2\2\2\20"+
"\22\7\5\2\2\21\20\3\2\2\2\21\22\3\2\2\2\22\23\3\2\2\2\23\24\5\6\4\2\24"+
"\25\7\4\2\2\25\26\5\b\5\2\26\5\3\2\2\2\27\30\7\7\2\2\30\7\3\2\2\2\31\34"+
"\7\7\2\2\32\34\7\3\2\2\33\31\3\2\2\2\33\32\3\2\2\2\34\t\3\2\2\2\5\r\21"+
"\33";
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 - 2024 Weber Informatics LLC | Privacy Policy