summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/bjc/utils/parserutils/pratt/commands/RightBinaryCommand.java
blob: 5f3d9f2b980b0b6117009de1373b9f5f84fc9a2a (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
package bjc.utils.parserutils.pratt.commands;

/**
 * A right-associative binary 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 RightBinaryCommand<K, V, C> extends BinaryCommand<K, V, C> {
	/**
	 * Create a new right-associative operator.
	 * 
	 * @param precedence
	 *                The precedence of the operator.
	 */
	public RightBinaryCommand(int precedence) {
		super(precedence);
	}

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