package bjc.pratt.commands; import bjc.pratt.ParserContext; /** * A 'meta-command' for non-initial commands. * * @author bjculkin * * @param * The token key type. * * @param * The token value type. * * @param * The parser state type. */ public interface MetaNonInitialCommand { NonInitialCommand getCommand(ParserContext ctx); }