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

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

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

import org.parboiled.BaseParser;
import org.parboiled.Rule;

public abstract class BasicParser extends BaseParser {
    private final ParserContext context;

    public BasicParser(Class type, ParserContext context) {
        context.register(type, this);
        this.context = context;
    }

    public ParserContext parserContext() {
        return context;
    }

    public abstract Rule Rule ();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy