Chromium Code Reviews| Index: sdk/lib/core/string.dart |
| diff --git a/sdk/lib/core/string.dart b/sdk/lib/core/string.dart |
| index d780314f2e0a9c59b775303bd0103293a7eca493..fc19f46fae669fa8eae29d961570b0a7fb935cb8 100644 |
| --- a/sdk/lib/core/string.dart |
| +++ b/sdk/lib/core/string.dart |
| @@ -135,6 +135,11 @@ abstract class String implements Comparable<String>, Pattern { |
| * var strings = ['foo', 'bar', 'geez']; |
| * var concatenated = strings.join(); |
| */ |
| + String operator +(String other); |
| + |
| + /** |
| + * *Deprecated* Use [operator+] instead. |
| + */ |
|
floitsch
2013/03/08 23:46:48
use @deprecated.
|
| String concat(String other); |
| /** |