Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/lib/js_string.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/lib/js_string.dart (revision 15139) |
| +++ sdk/lib/_internal/compiler/implementation/lib/js_string.dart (working copy) |
| @@ -130,4 +130,6 @@ |
| return this == other ? 0 |
| : JS('bool', r'# < #', this, other) ? -1 : 1; |
| } |
| + |
| + String toString() => this; |
| } |