package bjc.utils.parserutils.pratt; import bjc.utils.data.ITree; class DefaultLeftCommand extends LeftCommand { @Override public ITree> leftDenote(ITree> operand, Token operator, ParserContext ctx) { throw new UnsupportedOperationException("Default command has no left denotation"); } @Override public int leftBinding() { return -1; } }