| Index: runtime/lib/string_base.dart
|
| diff --git a/runtime/lib/string_base.dart b/runtime/lib/string_base.dart
|
| index 8ed74b6413dd969022f5494f14818512e1c5c3b0..7c47ffcb9afaf92be662606574b145e6371604b6 100644
|
| --- a/runtime/lib/string_base.dart
|
| +++ b/runtime/lib/string_base.dart
|
| @@ -46,7 +46,9 @@ class _StringBase {
|
| return this.length == 0;
|
| }
|
|
|
| - String concat(String other) native "String_concat";
|
| + String operator +(String other) native "String_concat";
|
| +
|
| + String concat(String other) => this + other;
|
|
|
| String toString() {
|
| return this;
|
|
|