| Index: sdk/lib/core/string.dart
|
| diff --git a/sdk/lib/core/string.dart b/sdk/lib/core/string.dart
|
| index d780314f2e0a9c59b775303bd0103293a7eca493..e285b00709ee60831cb45c68751699a68a369488 100644
|
| --- a/sdk/lib/core/string.dart
|
| +++ b/sdk/lib/core/string.dart
|
| @@ -135,6 +135,12 @@ abstract class String implements Comparable<String>, Pattern {
|
| * var strings = ['foo', 'bar', 'geez'];
|
| * var concatenated = strings.join();
|
| */
|
| + String operator +(String other);
|
| +
|
| + /**
|
| + * *Deprecated* Use [operator+] instead.
|
| + */
|
| + @deprecated
|
| String concat(String other);
|
|
|
| /**
|
|
|