blob: 1306735acba70aff671bfc114139f787fa3069a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package bjc.utils.parserutils.pratt.commands;
public class LeftBinaryCommand<K, V, C> extends BinaryCommand<K, V, C> {
public LeftBinaryCommand(int leftPower) {
super(leftPower);
}
@Override
protected int rightBinding() {
return 1 + leftBinding();
}
}
|