| Index: lib/src/compiler/code_generator.dart
|
| diff --git a/lib/src/compiler/code_generator.dart b/lib/src/compiler/code_generator.dart
|
| index dad88eb3fa58f5ca1436eebfa9f3c9fb0b12fff5..6077c26ec543a7704068904a85b2aa28062f9254 100644
|
| --- a/lib/src/compiler/code_generator.dart
|
| +++ b/lib/src/compiler/code_generator.dart
|
| @@ -4390,6 +4390,9 @@ class CodeGenerator extends GeneralizingAstVisitor
|
| if (node is PrefixExpression && node.operator.lexeme == '!') {
|
| return finish(js.call('!#', _visitTest(node.operand)));
|
| }
|
| + if (node is ParenthesizedExpression) {
|
| + return finish(_visitTest(node.expression));
|
| + }
|
| if (node is BinaryExpression) {
|
| JS.Expression shortCircuit(String code) {
|
| return finish(js.call(code,
|
|
|