mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-27 01:30:35 +08:00
Fix bug with JS operator precedence
This commit is contained in:
parent
675abe8740
commit
861742a2fb
@ -1718,9 +1718,14 @@ public class Renderer implements ExprVisitor, StatementVisitor, RenderingContext
|
||||
writer.append(')');
|
||||
break;
|
||||
case INT:
|
||||
precedence = Precedence.BITWISE_OR;
|
||||
expr.getValue().acceptVisitor(this);
|
||||
writer.ws().append("|").ws().append("0");
|
||||
visitBinary(BinaryOperation.BITWISE_OR, "|", () -> expr.getValue().acceptVisitor(this),
|
||||
() -> {
|
||||
try {
|
||||
writer.append("0");
|
||||
} catch (IOException e) {
|
||||
throw new RenderingException("IO error occurred", e);
|
||||
}
|
||||
});
|
||||
break;
|
||||
default:
|
||||
expr.getValue().acceptVisitor(this);
|
||||
|
Loading…
Reference in New Issue
Block a user