Skip to content

Commit

Permalink
refactor: Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
2 people authored and app committed Nov 4, 2024
1 parent 581944e commit 0b7ecf5
Show file tree
Hide file tree
Showing 29 changed files with 442 additions and 442 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public J visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx)
J.MethodInvocation m = (J.MethodInvocation) super.visitMethodInvocation(method, ctx);

GradleDependency.Matcher gradleDependencyMatcher = new GradleDependency.Matcher();

if (!((gradleDependencyMatcher.get(getCursor()).isPresent() || dependencyDsl.matches(m)) && (StringUtils.isBlank(configuration) || m.getSimpleName().equals(configuration)))) {
return m;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public J visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx)
J.MethodInvocation m = (J.MethodInvocation) super.visitMethodInvocation(method, ctx);

GradleDependency.Matcher gradleDependencyMatcher = new GradleDependency.Matcher();

if (!(gradleDependencyMatcher.get(getCursor()).isPresent() || dependencyDsl.matches(m))) {
return m;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ void worksWithoutVersion() {
)
);
}

@ParameterizedTest
@CsvSource(value = {"org.openrewrite:rewrite-core", "*:*"}, delimiterString = ":")
void worksWithClassifier(String group, String artifact) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public class HCLLexer extends Lexer {
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
FOR_BRACE=1, FOR_BRACK=2, IF=3, IN=4, LBRACE=5, RBRACE=6, ASSIGN=7, Identifier=8,
WS=9, COMMENT=10, LINE_COMMENT=11, NEWLINE=12, NumericLiteral=13, BooleanLiteral=14,
QUOTE=15, NULL=16, HEREDOC_START=17, PLUS=18, AND=19, EQ=20, LT=21, COLON=22,
LBRACK=23, LPAREN=24, MINUS=25, OR=26, NEQ=27, GT=28, QUESTION=29, RBRACK=30,
RPAREN=31, MUL=32, NOT=33, LEQ=34, DOT=35, DIV=36, GEQ=37, ARROW=38, COMMA=39,
MOD=40, ELLIPSIS=41, TILDE=42, TEMPLATE_INTERPOLATION_START=43, TemplateStringLiteral=44,
FOR_BRACE=1, FOR_BRACK=2, IF=3, IN=4, LBRACE=5, RBRACE=6, ASSIGN=7, Identifier=8,
WS=9, COMMENT=10, LINE_COMMENT=11, NEWLINE=12, NumericLiteral=13, BooleanLiteral=14,
QUOTE=15, NULL=16, HEREDOC_START=17, PLUS=18, AND=19, EQ=20, LT=21, COLON=22,
LBRACK=23, LPAREN=24, MINUS=25, OR=26, NEQ=27, GT=28, QUESTION=29, RBRACK=30,
RPAREN=31, MUL=32, NOT=33, LEQ=34, DOT=35, DIV=36, GEQ=37, ARROW=38, COMMA=39,
MOD=40, ELLIPSIS=41, TILDE=42, TEMPLATE_INTERPOLATION_START=43, TemplateStringLiteral=44,
TemplateStringLiteralChar=45, HTemplateLiteral=46, HTemplateLiteralChar=47;
public static final int
TEMPLATE=1, HEREDOC_PREAMBLE=2, HEREDOC=3;
Expand All @@ -52,39 +52,39 @@ public class HCLLexer extends Lexer {

private static String[] makeRuleNames() {
return new String[] {
"FOR_BRACE", "FOR_BRACK", "IF", "IN", "LBRACE", "RBRACE", "ASSIGN", "StringLiteralChar",
"Identifier", "WS", "COMMENT", "LINE_COMMENT", "NEWLINE", "LetterOrDigit",
"Letter", "EscapeSequence", "HexDigit", "NumericLiteral", "ExponentPart",
"BooleanLiteral", "QUOTE", "NULL", "HEREDOC_START", "PLUS", "AND", "EQ",
"LT", "COLON", "LBRACK", "LPAREN", "MINUS", "OR", "NEQ", "GT", "QUESTION",
"RBRACK", "RPAREN", "MUL", "NOT", "LEQ", "DOT", "DIV", "GEQ", "ARROW",
"COMMA", "MOD", "ELLIPSIS", "TILDE", "TEMPLATE_INTERPOLATION_START",
"TemplateStringLiteral", "TemplateStringLiteralChar", "END_QUOTE", "HP_NEWLINE",
"HPIdentifier", "H_NEWLINE", "H_TEMPLATE_INTERPOLATION_START", "HTemplateLiteral",
"FOR_BRACE", "FOR_BRACK", "IF", "IN", "LBRACE", "RBRACE", "ASSIGN", "StringLiteralChar",
"Identifier", "WS", "COMMENT", "LINE_COMMENT", "NEWLINE", "LetterOrDigit",
"Letter", "EscapeSequence", "HexDigit", "NumericLiteral", "ExponentPart",
"BooleanLiteral", "QUOTE", "NULL", "HEREDOC_START", "PLUS", "AND", "EQ",
"LT", "COLON", "LBRACK", "LPAREN", "MINUS", "OR", "NEQ", "GT", "QUESTION",
"RBRACK", "RPAREN", "MUL", "NOT", "LEQ", "DOT", "DIV", "GEQ", "ARROW",
"COMMA", "MOD", "ELLIPSIS", "TILDE", "TEMPLATE_INTERPOLATION_START",
"TemplateStringLiteral", "TemplateStringLiteralChar", "END_QUOTE", "HP_NEWLINE",
"HPIdentifier", "H_NEWLINE", "H_TEMPLATE_INTERPOLATION_START", "HTemplateLiteral",
"HTemplateLiteralChar"
};
}
public static final String[] ruleNames = makeRuleNames();

private static String[] makeLiteralNames() {
return new String[] {
null, null, null, "'if'", "'in'", "'{'", "'}'", "'='", null, null, null,
null, null, null, null, null, "'null'", null, "'+'", "'&&'", "'=='",
"'<'", "':'", "'['", "'('", "'-'", "'||'", "'!='", "'>'", "'?'", "']'",
"')'", "'*'", "'!'", "'<='", "'.'", "'/'", "'>='", "'=>'", "','", "'%'",
null, null, null, "'if'", "'in'", "'{'", "'}'", "'='", null, null, null,
null, null, null, null, null, "'null'", null, "'+'", "'&&'", "'=='",
"'<'", "':'", "'['", "'('", "'-'", "'||'", "'!='", "'>'", "'?'", "']'",
"')'", "'*'", "'!'", "'<='", "'.'", "'/'", "'>='", "'=>'", "','", "'%'",
"'...'", "'~'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "FOR_BRACE", "FOR_BRACK", "IF", "IN", "LBRACE", "RBRACE", "ASSIGN",
"Identifier", "WS", "COMMENT", "LINE_COMMENT", "NEWLINE", "NumericLiteral",
"BooleanLiteral", "QUOTE", "NULL", "HEREDOC_START", "PLUS", "AND", "EQ",
"LT", "COLON", "LBRACK", "LPAREN", "MINUS", "OR", "NEQ", "GT", "QUESTION",
"RBRACK", "RPAREN", "MUL", "NOT", "LEQ", "DOT", "DIV", "GEQ", "ARROW",
"COMMA", "MOD", "ELLIPSIS", "TILDE", "TEMPLATE_INTERPOLATION_START",
"TemplateStringLiteral", "TemplateStringLiteralChar", "HTemplateLiteral",
null, "FOR_BRACE", "FOR_BRACK", "IF", "IN", "LBRACE", "RBRACE", "ASSIGN",
"Identifier", "WS", "COMMENT", "LINE_COMMENT", "NEWLINE", "NumericLiteral",
"BooleanLiteral", "QUOTE", "NULL", "HEREDOC_START", "PLUS", "AND", "EQ",
"LT", "COLON", "LBRACK", "LPAREN", "MINUS", "OR", "NEQ", "GT", "QUESTION",
"RBRACK", "RPAREN", "MUL", "NOT", "LEQ", "DOT", "DIV", "GEQ", "ARROW",
"COMMA", "MOD", "ELLIPSIS", "TILDE", "TEMPLATE_INTERPOLATION_START",
"TemplateStringLiteral", "TemplateStringLiteralChar", "HTemplateLiteral",
"HTemplateLiteralChar"
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,58 +36,58 @@ public class HCLParser extends Parser {
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
FOR_BRACE=1, FOR_BRACK=2, IF=3, IN=4, LBRACE=5, RBRACE=6, ASSIGN=7, Identifier=8,
WS=9, COMMENT=10, LINE_COMMENT=11, NEWLINE=12, NumericLiteral=13, BooleanLiteral=14,
QUOTE=15, NULL=16, HEREDOC_START=17, PLUS=18, AND=19, EQ=20, LT=21, COLON=22,
LBRACK=23, LPAREN=24, MINUS=25, OR=26, NEQ=27, GT=28, QUESTION=29, RBRACK=30,
RPAREN=31, MUL=32, NOT=33, LEQ=34, DOT=35, DIV=36, GEQ=37, ARROW=38, COMMA=39,
MOD=40, ELLIPSIS=41, TILDE=42, TEMPLATE_INTERPOLATION_START=43, TemplateStringLiteral=44,
FOR_BRACE=1, FOR_BRACK=2, IF=3, IN=4, LBRACE=5, RBRACE=6, ASSIGN=7, Identifier=8,
WS=9, COMMENT=10, LINE_COMMENT=11, NEWLINE=12, NumericLiteral=13, BooleanLiteral=14,
QUOTE=15, NULL=16, HEREDOC_START=17, PLUS=18, AND=19, EQ=20, LT=21, COLON=22,
LBRACK=23, LPAREN=24, MINUS=25, OR=26, NEQ=27, GT=28, QUESTION=29, RBRACK=30,
RPAREN=31, MUL=32, NOT=33, LEQ=34, DOT=35, DIV=36, GEQ=37, ARROW=38, COMMA=39,
MOD=40, ELLIPSIS=41, TILDE=42, TEMPLATE_INTERPOLATION_START=43, TemplateStringLiteral=44,
TemplateStringLiteralChar=45, HTemplateLiteral=46, HTemplateLiteralChar=47;
public static final int
RULE_configFile = 0, RULE_body = 1, RULE_bodyContent = 2, RULE_attribute = 3,
RULE_block = 4, RULE_blockLabel = 5, RULE_expression = 6, RULE_exprTerm = 7,
RULE_blockExpr = 8, RULE_literalValue = 9, RULE_collectionValue = 10,
RULE_tuple = 11, RULE_object = 12, RULE_objectelem = 13, RULE_forExpr = 14,
RULE_forTupleExpr = 15, RULE_forObjectExpr = 16, RULE_forIntro = 17, RULE_forCond = 18,
RULE_variableExpr = 19, RULE_functionCall = 20, RULE_arguments = 21, RULE_index = 22,
RULE_getAttr = 23, RULE_splat = 24, RULE_attrSplat = 25, RULE_fullSplat = 26,
RULE_operation = 27, RULE_unaryOp = 28, RULE_binaryOp = 29, RULE_binaryOperator = 30,
RULE_compareOperator = 31, RULE_arithmeticOperator = 32, RULE_logicOperator = 33,
RULE_templateExpr = 34, RULE_heredocTemplatePart = 35, RULE_heredocLiteral = 36,
RULE_configFile = 0, RULE_body = 1, RULE_bodyContent = 2, RULE_attribute = 3,
RULE_block = 4, RULE_blockLabel = 5, RULE_expression = 6, RULE_exprTerm = 7,
RULE_blockExpr = 8, RULE_literalValue = 9, RULE_collectionValue = 10,
RULE_tuple = 11, RULE_object = 12, RULE_objectelem = 13, RULE_forExpr = 14,
RULE_forTupleExpr = 15, RULE_forObjectExpr = 16, RULE_forIntro = 17, RULE_forCond = 18,
RULE_variableExpr = 19, RULE_functionCall = 20, RULE_arguments = 21, RULE_index = 22,
RULE_getAttr = 23, RULE_splat = 24, RULE_attrSplat = 25, RULE_fullSplat = 26,
RULE_operation = 27, RULE_unaryOp = 28, RULE_binaryOp = 29, RULE_binaryOperator = 30,
RULE_compareOperator = 31, RULE_arithmeticOperator = 32, RULE_logicOperator = 33,
RULE_templateExpr = 34, RULE_heredocTemplatePart = 35, RULE_heredocLiteral = 36,
RULE_quotedTemplatePart = 37, RULE_stringLiteral = 38, RULE_templateInterpolation = 39;
private static String[] makeRuleNames() {
return new String[] {
"configFile", "body", "bodyContent", "attribute", "block", "blockLabel",
"expression", "exprTerm", "blockExpr", "literalValue", "collectionValue",
"tuple", "object", "objectelem", "forExpr", "forTupleExpr", "forObjectExpr",
"forIntro", "forCond", "variableExpr", "functionCall", "arguments", "index",
"getAttr", "splat", "attrSplat", "fullSplat", "operation", "unaryOp",
"binaryOp", "binaryOperator", "compareOperator", "arithmeticOperator",
"logicOperator", "templateExpr", "heredocTemplatePart", "heredocLiteral",
"configFile", "body", "bodyContent", "attribute", "block", "blockLabel",
"expression", "exprTerm", "blockExpr", "literalValue", "collectionValue",
"tuple", "object", "objectelem", "forExpr", "forTupleExpr", "forObjectExpr",
"forIntro", "forCond", "variableExpr", "functionCall", "arguments", "index",
"getAttr", "splat", "attrSplat", "fullSplat", "operation", "unaryOp",
"binaryOp", "binaryOperator", "compareOperator", "arithmeticOperator",
"logicOperator", "templateExpr", "heredocTemplatePart", "heredocLiteral",
"quotedTemplatePart", "stringLiteral", "templateInterpolation"
};
}
public static final String[] ruleNames = makeRuleNames();

private static String[] makeLiteralNames() {
return new String[] {
null, null, null, "'if'", "'in'", "'{'", "'}'", "'='", null, null, null,
null, null, null, null, null, "'null'", null, "'+'", "'&&'", "'=='",
"'<'", "':'", "'['", "'('", "'-'", "'||'", "'!='", "'>'", "'?'", "']'",
"')'", "'*'", "'!'", "'<='", "'.'", "'/'", "'>='", "'=>'", "','", "'%'",
null, null, null, "'if'", "'in'", "'{'", "'}'", "'='", null, null, null,
null, null, null, null, null, "'null'", null, "'+'", "'&&'", "'=='",
"'<'", "':'", "'['", "'('", "'-'", "'||'", "'!='", "'>'", "'?'", "']'",
"')'", "'*'", "'!'", "'<='", "'.'", "'/'", "'>='", "'=>'", "','", "'%'",
"'...'", "'~'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "FOR_BRACE", "FOR_BRACK", "IF", "IN", "LBRACE", "RBRACE", "ASSIGN",
"Identifier", "WS", "COMMENT", "LINE_COMMENT", "NEWLINE", "NumericLiteral",
"BooleanLiteral", "QUOTE", "NULL", "HEREDOC_START", "PLUS", "AND", "EQ",
"LT", "COLON", "LBRACK", "LPAREN", "MINUS", "OR", "NEQ", "GT", "QUESTION",
"RBRACK", "RPAREN", "MUL", "NOT", "LEQ", "DOT", "DIV", "GEQ", "ARROW",
"COMMA", "MOD", "ELLIPSIS", "TILDE", "TEMPLATE_INTERPOLATION_START",
"TemplateStringLiteral", "TemplateStringLiteralChar", "HTemplateLiteral",
null, "FOR_BRACE", "FOR_BRACK", "IF", "IN", "LBRACE", "RBRACE", "ASSIGN",
"Identifier", "WS", "COMMENT", "LINE_COMMENT", "NEWLINE", "NumericLiteral",
"BooleanLiteral", "QUOTE", "NULL", "HEREDOC_START", "PLUS", "AND", "EQ",
"LT", "COLON", "LBRACK", "LPAREN", "MINUS", "OR", "NEQ", "GT", "QUESTION",
"RBRACK", "RPAREN", "MUL", "NOT", "LEQ", "DOT", "DIV", "GEQ", "ARROW",
"COMMA", "MOD", "ELLIPSIS", "TILDE", "TEMPLATE_INTERPOLATION_START",
"TemplateStringLiteral", "TemplateStringLiteralChar", "HTemplateLiteral",
"HTemplateLiteralChar"
};
}
Expand Down Expand Up @@ -504,7 +504,7 @@ public ExpressionContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_expression; }

public ExpressionContext() { }
public void copyFrom(ExpressionContext ctx) {
super.copyFrom(ctx);
Expand Down Expand Up @@ -637,7 +637,7 @@ private ExpressionContext expression(int _p) throws RecognitionException {
setState(121);
expression(2);
}
}
}
}
setState(127);
_errHandler.sync(this);
Expand All @@ -662,7 +662,7 @@ public ExprTermContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_exprTerm; }

public ExprTermContext() { }
public void copyFrom(ExprTermContext ctx) {
super.copyFrom(ctx);
Expand Down Expand Up @@ -1010,7 +1010,7 @@ private ExprTermContext exprTerm(int _p) throws RecognitionException {
}
break;
}
}
}
}
setState(151);
_errHandler.sync(this);
Expand Down Expand Up @@ -1259,7 +1259,7 @@ public final TupleContext tuple() throws RecognitionException {
setState(165);
expression(0);
}
}
}
}
setState(170);
_errHandler.sync(this);
Expand Down Expand Up @@ -1990,7 +1990,7 @@ public final ArgumentsContext arguments() throws RecognitionException {
setState(255);
expression(0);
}
}
}
}
setState(260);
_errHandler.sync(this);
Expand Down Expand Up @@ -2237,7 +2237,7 @@ public final AttrSplatContext attrSplat() throws RecognitionException {
setState(277);
getAttr();
}
}
}
}
setState(282);
_errHandler.sync(this);
Expand Down Expand Up @@ -2329,7 +2329,7 @@ public final FullSplatContext fullSplat() throws RecognitionException {
default:
throw new NoViableAltException(this);
}
}
}
}
setState(292);
_errHandler.sync(this);
Expand Down Expand Up @@ -2824,7 +2824,7 @@ public TemplateExprContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
@Override public int getRuleIndex() { return RULE_templateExpr; }

public TemplateExprContext() { }
public void copyFrom(TemplateExprContext ctx) {
super.copyFrom(ctx);
Expand Down Expand Up @@ -2906,7 +2906,7 @@ public final TemplateExprContext templateExpr() throws RecognitionException {
match(HEREDOC_START);
setState(321);
match(Identifier);
setState(329);
setState(329);
_errHandler.sync(this);
_la = _input.LA(1);
do {
Expand All @@ -2930,7 +2930,7 @@ public final TemplateExprContext templateExpr() throws RecognitionException {
}
}
}
setState(331);
setState(331);
_errHandler.sync(this);
_la = _input.LA(1);
} while ( _la==NEWLINE );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ public class JsonPathLexer extends Lexer {
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
WS=1, UTF_8_BOM=2, MATCHES_REGEX_OPEN=3, LBRACE=4, RBRACE=5, LBRACK=6,
RBRACK=7, LPAREN=8, RPAREN=9, AT=10, DOT=11, DOT_DOT=12, ROOT=13, WILDCARD=14,
COLON=15, QUESTION=16, CONTAINS=17, Identifier=18, StringLiteral=19, PositiveNumber=20,
NegativeNumber=21, NumericLiteral=22, COMMA=23, TICK=24, QUOTE=25, MATCHES=26,
LOGICAL_OPERATOR=27, AND=28, OR=29, EQUALITY_OPERATOR=30, EQ=31, NE=32,
WS=1, UTF_8_BOM=2, MATCHES_REGEX_OPEN=3, LBRACE=4, RBRACE=5, LBRACK=6,
RBRACK=7, LPAREN=8, RPAREN=9, AT=10, DOT=11, DOT_DOT=12, ROOT=13, WILDCARD=14,
COLON=15, QUESTION=16, CONTAINS=17, Identifier=18, StringLiteral=19, PositiveNumber=20,
NegativeNumber=21, NumericLiteral=22, COMMA=23, TICK=24, QUOTE=25, MATCHES=26,
LOGICAL_OPERATOR=27, AND=28, OR=29, EQUALITY_OPERATOR=30, EQ=31, NE=32,
TRUE=33, FALSE=34, NULL=35, MATCHES_REGEX_CLOSE=36, S=37, REGEX=38;
public static final int
MATCHES_REGEX=1;
Expand All @@ -49,33 +49,33 @@ public class JsonPathLexer extends Lexer {

private static String[] makeRuleNames() {
return new String[] {
"WS", "UTF_8_BOM", "MATCHES_REGEX_OPEN", "LBRACE", "RBRACE", "LBRACK",
"RBRACK", "LPAREN", "RPAREN", "AT", "DOT", "DOT_DOT", "ROOT", "WILDCARD",
"COLON", "QUESTION", "CONTAINS", "Identifier", "StringLiteral", "PositiveNumber",
"NegativeNumber", "NumericLiteral", "COMMA", "TICK", "QUOTE", "MATCHES",
"LOGICAL_OPERATOR", "AND", "OR", "EQUALITY_OPERATOR", "EQ", "NE", "TRUE",
"FALSE", "NULL", "ESCAPE_SEQUENCE", "UNICODE", "HEX_DIGIT", "SAFE_CODE_POINT",
"WS", "UTF_8_BOM", "MATCHES_REGEX_OPEN", "LBRACE", "RBRACE", "LBRACK",
"RBRACK", "LPAREN", "RPAREN", "AT", "DOT", "DOT_DOT", "ROOT", "WILDCARD",
"COLON", "QUESTION", "CONTAINS", "Identifier", "StringLiteral", "PositiveNumber",
"NegativeNumber", "NumericLiteral", "COMMA", "TICK", "QUOTE", "MATCHES",
"LOGICAL_OPERATOR", "AND", "OR", "EQUALITY_OPERATOR", "EQ", "NE", "TRUE",
"FALSE", "NULL", "ESCAPE_SEQUENCE", "UNICODE", "HEX_DIGIT", "SAFE_CODE_POINT",
"EXPONENT_PART", "MINUS", "MATCHES_REGEX_CLOSE", "S", "REGEX"
};
}
public static final String[] ruleNames = makeRuleNames();

private static String[] makeLiteralNames() {
return new String[] {
null, null, "'\\uFEFF'", null, "'{'", "'}'", "'['", "']'", "'('", "')'",
"'@'", "'.'", "'..'", "'$'", "'*'", "':'", "'?'", "'contains'", null,
null, null, null, null, "','", "'''", "'\"'", "'=~'", null, "'&&'", "'||'",
null, null, "'\\uFEFF'", null, "'{'", "'}'", "'['", "']'", "'('", "')'",
"'@'", "'.'", "'..'", "'$'", "'*'", "':'", "'?'", "'contains'", null,
null, null, null, null, "','", "'''", "'\"'", "'=~'", null, "'&&'", "'||'",
null, "'=='", "'!='", "'true'", "'false'", "'null'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "WS", "UTF_8_BOM", "MATCHES_REGEX_OPEN", "LBRACE", "RBRACE", "LBRACK",
"RBRACK", "LPAREN", "RPAREN", "AT", "DOT", "DOT_DOT", "ROOT", "WILDCARD",
"COLON", "QUESTION", "CONTAINS", "Identifier", "StringLiteral", "PositiveNumber",
"NegativeNumber", "NumericLiteral", "COMMA", "TICK", "QUOTE", "MATCHES",
"LOGICAL_OPERATOR", "AND", "OR", "EQUALITY_OPERATOR", "EQ", "NE", "TRUE",
null, "WS", "UTF_8_BOM", "MATCHES_REGEX_OPEN", "LBRACE", "RBRACE", "LBRACK",
"RBRACK", "LPAREN", "RPAREN", "AT", "DOT", "DOT_DOT", "ROOT", "WILDCARD",
"COLON", "QUESTION", "CONTAINS", "Identifier", "StringLiteral", "PositiveNumber",
"NegativeNumber", "NumericLiteral", "COMMA", "TICK", "QUOTE", "MATCHES",
"LOGICAL_OPERATOR", "AND", "OR", "EQUALITY_OPERATOR", "EQ", "NE", "TRUE",
"FALSE", "NULL", "MATCHES_REGEX_CLOSE", "S", "REGEX"
};
}
Expand Down
Loading

0 comments on commit 0b7ecf5

Please sign in to comment.