![JAR search and dependency download from the Maven repository](/logo.png)
jscl.text.CommaAndExpression Maven / Gradle / Ivy
package jscl.text;
import jscl.math.Generic;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class CommaAndExpression implements Parser {
public static final Parser parser = new CommaAndExpression();
private CommaAndExpression() {
}
public Generic parse(@Nonnull Parameters p, @Nullable Generic previousSumElement) throws ParseException {
int pos0 = p.getPosition().intValue();
ParserUtils.skipWhitespaces(p);
ParserUtils.tryToParse(p, pos0, ',');
return ParserUtils.parseWithRollback(ExpressionParser.parser, pos0, previousSumElement, p);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy