All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jscl.text.CommaAndExpression Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
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