summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/com/ashardalon/pratt/commands/impls/LeftBinaryCommand.java
blob: c5408d6d611e3afac6d5268631427643d0d489b2 (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
package com.ashardalon.pratt.commands.impls;

import com.ashardalon.pratt.commands.BinaryCommand;

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

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