summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/bjc/pratt/commands/impls/NonBinaryCommand.java
blob: d30366332d2efa717993b11a1844d0de82477ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package bjc.pratt.commands.impls;

import bjc.pratt.commands.BinaryCommand;

/**
 * A non-associative operator.
 *
 * @author bjculkin
 *
 * @param <K>
 *        The key type of the tokens.
 *
 * @param <V>
 *        The value type of the tokens.
 *
 * @param <C>
 *        The state type of the parser.
 */
public class NonBinaryCommand<K, V, C> extends BinaryCommand<K, V, C> {
	/**
	 * Create a new non-associative operator.
	 *
	 * @param precedence
	 *        The precedence of the operator.
	 */
	public NonBinaryCommand(final int precedence) {
		super(precedence);
	}

	@Override
	protected int rightBinding() {
		return 1 + leftBinding();
	}

	@Override
	public int nextBinding() {
		return leftBinding() - 1;
	}
}