blob: 3a5cba4a1380d491b8f56940ee944191c2d8d565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package bjc.pratt.commands;
import bjc.pratt.ParserContext;
/**
* 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);
}
|