org.unlaxer.tinyexpression.parser.BooleanVariableDeclarationMatchedTokenParser 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.TokenPredicators;
import org.unlaxer.parser.referencer.MatchedTokenParser;
import org.unlaxer.tinyexpression.parser.javalang.BooleanVariableDeclarationParser;
public class BooleanVariableDeclarationMatchedTokenParser extends MatchedTokenParser{
public BooleanVariableDeclarationMatchedTokenParser() {
super(TokenPredicators.parsers(BooleanVariableDeclarationParser.class));
}
}