| Index: lib/compiler/implementation/operations.dart
|
| diff --git a/lib/compiler/implementation/operations.dart b/lib/compiler/implementation/operations.dart
|
| index 3cc81af5c1520359a16b2f096b0c978366199445..e445678aa319176291d85c1692f5c8186a78a436 100644
|
| --- a/lib/compiler/implementation/operations.dart
|
| +++ b/lib/compiler/implementation/operations.dart
|
| @@ -235,6 +235,7 @@ class AddOperation implements BinaryOperation {
|
| if (rightDartString.isEmpty()) {
|
| return left;
|
| } else if (leftString.value.isEmpty()) {
|
| + // TODO(floitsch): There is no right.node. Find a node some other way.
|
| return new StringConstant(rightDartString, right.node);
|
| } else {
|
| DartString concatenated =
|
|
|