package bjc.pratt.commands; import bjc.pratt.ParserContext; /** * A 'meta-command' that yields the actual command to use. * * @author bjculkin * */ public interface MetaInitialCommand { InitialCommand getCommand(ParserContext ctx); }