| Index: runtime/lib/string_base.dart
|
| diff --git a/runtime/lib/string_base.dart b/runtime/lib/string_base.dart
|
| index 6e76f2ca61cff35f91176b92496cd006d3316ee6..660538c0dc52bda44d70463b0d546f7b1f9bc3d8 100644
|
| --- a/runtime/lib/string_base.dart
|
| +++ b/runtime/lib/string_base.dart
|
| @@ -39,7 +39,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;
|
|
|