blob: 067d08427faed02d9d7f6e2f86074eaed244e414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package bjc.pratt;
/**
* A 'meta-command' that yields the actual command to use.
*
* @author bjculkin
*
*/
public interface MetaInitialCommand<K, V, C> {
InitialCommand<K, V, C> getCommand(ParserContext<K, V, C> ctx);
}
|