org.unlaxer.tinyexpression.parser.StringMatchExpressionParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
package org.unlaxer.tinyexpression.parser;
import org.unlaxer.Tag;
import org.unlaxer.Token;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;
import org.unlaxer.tinyexpression.parser.NumberMatchExpressionParser.MatchFuctionNameParser;
import org.unlaxer.tinyexpression.parser.javalang.JavaStyleDelimitedLazyChain;
import org.unlaxer.util.annotation.TokenExtractor;
public class StringMatchExpressionParser extends JavaStyleDelimitedLazyChain implements NumberExpression{
public static Tag choiceTag= Tag.of("stringChoice");
public StringMatchExpressionParser() {
super();
addTag(ExpressionTags.matchExpression.tag());
}
@Override
public org.unlaxer.parser.Parsers getLazyParsers() {
return
//MatchExpression:='match{'CaseExpression,DefaultCaseFactor'}';
new Parsers(
Parser.get(MatchFuctionNameParser.class),
Parser.get(LeftCurlyBraceParser.class),
Parser.get(StringCaseExpressionParser.class),//2
Parser.get(StringDefaultCaseFactorParser.class),//3
Parser.get(RightCurlyBraceParser.class)
);
}
@TokenExtractor
public static Token getCaseExpression(Token thisParserParsed) {
return thisParserParsed.getChildWithParser(StringCaseExpressionParser.class); //2
}
@TokenExtractor
public static Token getDefaultExpression(Token thisParserParsed) {
return thisParserParsed.getChildWithParser(StringDefaultCaseFactorParser.class); //3
}
}