blob: 444c0e47d944d029a92baa1d06b3305c73b8a4b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package bjc.pratt;
/**
* A 'meta-command' for non-initial commands.
*
* @author bjculkin
*
* @param <K>
* The token key type.
*
* @param <V>
* The token value type.
*
* @param <C>
* The parser state type.
*/
public interface MetaNonInitialCommand<K, V, C> {
NonInitialCommand<K, V, C> getCommand(ParserContext<K, V, C> ctx);
}
|