Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1470)

Unified Diff: runtime/lib/invocation_mirror_patch.dart

Issue 12441003: Rename String.concat to operator+. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/intl/lib/src/date_format_field.dart ('k') | runtime/lib/string_base.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/invocation_mirror_patch.dart
diff --git a/runtime/lib/invocation_mirror_patch.dart b/runtime/lib/invocation_mirror_patch.dart
index 3f53feb7740210b7348068ea0c8051cdda6ebfa7..6a55ca2dff7bb0fe2a62c493764795493aab633a 100644
--- a/runtime/lib/invocation_mirror_patch.dart
+++ b/runtime/lib/invocation_mirror_patch.dart
@@ -40,7 +40,7 @@ class _InvocationMirror implements InvocationMirror {
_memberName = _functionName.substring(4);
} else if (_functionName.startsWith("set:")) {
_type = _SETTER;
- _memberName = _functionName.substring(4).concat("=");
+ _memberName = _functionName.substring(4) + "=";
} else {
_type = _METHOD;
_memberName = _functionName;
« no previous file with comments | « pkg/intl/lib/src/date_format_field.dart ('k') | runtime/lib/string_base.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698