| Index: dart/lib/compiler/implementation/lib/js_helper.dart
|
| diff --git a/dart/lib/compiler/implementation/lib/js_helper.dart b/dart/lib/compiler/implementation/lib/js_helper.dart
|
| index a5cb94f47ff5942f94820fd7f4ae4fd50ab75731..508d52dc88fedc1507dfbc09a61e78a888fbe055 100644
|
| --- a/dart/lib/compiler/implementation/lib/js_helper.dart
|
| +++ b/dart/lib/compiler/implementation/lib/js_helper.dart
|
| @@ -118,14 +118,6 @@ bool isJsArray(var value) {
|
| add$slow(var a, var b) {
|
| if (checkNumbers(a, b)) {
|
| return JS('num', @'# + #', a, b);
|
| - } else if (a is String) {
|
| - // TODO(lrn): Remove when we disable String.operator+
|
| - b = b.toString();
|
| - if (b is String) {
|
| - return JS('String', @'# + #', a, b);
|
| - }
|
| - checkNull(b);
|
| - throw new IllegalArgumentException(b);
|
| }
|
| return UNINTERCEPTED(a + b);
|
| }
|
|
|