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