| Index: lib/compiler/implementation/js/nodes.dart
|
| diff --git a/lib/compiler/implementation/js/nodes.dart b/lib/compiler/implementation/js/nodes.dart
|
| index 7e7111aa9daf6d9eea1af44883d261c9d0c59e7e..de57fbf4d4118cf5826a59f692d481cc00fb3ab5 100644
|
| --- a/lib/compiler/implementation/js/nodes.dart
|
| +++ b/lib/compiler/implementation/js/nodes.dart
|
| @@ -557,7 +557,11 @@ class Binary extends Call {
|
| Binary(String op, Expression left, Expression right)
|
| : super(new VariableUse(op), <Expression>[left, right]);
|
|
|
| - String get op() => (target as VariableUse).name;
|
| + String get op() {
|
| + VariableUse use = target;
|
| + return use.name;
|
| + }
|
| +
|
| Expression get left() => arguments[0];
|
| Expression get right() => arguments[1];
|
|
|
|
|