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

Unified Diff: runtime/vm/custom_isolate_test.cc

Issue 10536129: Eliminate a couple of uses of String + (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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 | « no previous file | runtime/vm/snapshot_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/custom_isolate_test.cc
===================================================================
--- runtime/vm/custom_isolate_test.cc (revision 8558)
+++ runtime/vm/custom_isolate_test.cc (working copy)
@@ -57,7 +57,7 @@
"isolateMain() {\n"
" echo('Running isolateMain');\n"
" mainPort.receive((message, SendPort replyTo) {\n"
- " echo('Received: ' + message);\n"
+ " echo('Received: $message');\n"
" replyTo.send((message + 1), null);\n"
" });\n"
"}\n"
@@ -66,7 +66,7 @@
" var isolate = new CustomIsolate(\"isolateMain\");\n"
" isolate.spawn().then((SendPort port) {\n"
" port.call(42).then((message) {\n"
- " echo('Received: ' + message);\n"
+ " echo('Received: $message');\n"
" });\n"
" });\n"
" return 'success';\n"
« no previous file with comments | « no previous file | runtime/vm/snapshot_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698