org.unlaxer.tinyexpression.parser.NumberFactorParser 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 java.util.Set;
import org.unlaxer.Parsed;
import org.unlaxer.TokenKind;
import org.unlaxer.context.ParseContext;
import org.unlaxer.util.Singletons;
public class NumberFactorParser extends AbstractNumberFactorParser implements TypedParser{
@Override
public org.unlaxer.parser.Parsers getLazyParsers() {
return getLazyParsers(true);
}
@Override
public boolean hasNakedVariableParser() {
return true;
}
@Override
public ExpressionTypes type() {
return ExpressionTypes.number;
}
@Override
public Set allTypes() {
return allTypes;
}
static Set allTypes = Set.of(
Singletons.get(NumberFactorParser.class),
Singletons.get(StringFactorParser.class),
Singletons.get(BooleanFactorParser.class)
);
@Override
public Set otherTypes() {
return otherTypes;
}
static Set otherTypes = Set.of(
Singletons.get(StringFactorParser.class),
Singletons.get(BooleanFactorParser.class)
);
@Override
public Parsed parse(ParseContext parseContext, TokenKind tokenKind, boolean invertMatch) {
return super.parse(parseContext, tokenKind, invertMatch);
}
}