package bjc.utils.parserutils.pratt.commands; import bjc.utils.data.ITree; import bjc.utils.parserutils.ParserException; import bjc.utils.parserutils.pratt.ParserContext; import bjc.utils.parserutils.pratt.Token; /** * Represents a configurable initial command. * * @author EVE * * @param * The token key type. * * @param * The token value type. * * @param * The parser state type. */ public class InitialInterleaveCommand extends AbstractInitialCommand { @Override protected ITree> intNullDenotation(Token operator, ParserContext ctx) throws ParserException { return null; } }