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

org.jtwig.plural.parse.parboiled.SpacingParser Maven / Gradle / Ivy

There is a newer version: 5.87.0.RELEASE
Show newest version
package org.jtwig.plural.parse.parboiled;

import org.parboiled.Rule;

public class SpacingParser extends BasicParser {
    public SpacingParser(ParserContext context) {
        super(SpacingParser.class, context);
    }

    @Override
    public Rule Rule() {
        return ZeroOrMore(
                AnyOf(" \t\r\n\f")
        );
    }
}