| Index: runtime/vm/snapshot_test.cc
|
| ===================================================================
|
| --- runtime/vm/snapshot_test.cc (revision 8558)
|
| +++ runtime/vm/snapshot_test.cc (working copy)
|
| @@ -1459,11 +1459,11 @@
|
| " var port = new ReceivePort();\n"
|
| " port.receive((message, replyTo) {\n"
|
| " if (messageCount < 7) {\n"
|
| - " exception += message.toString();\n"
|
| + " exception = '$exception${message}';\n"
|
| " } else {\n"
|
| - " exception += message.length;\n"
|
| + " exception = '$exception${message.length}';\n"
|
| " for (int i = 0; i < message.length; i++) {\n"
|
| - " exception += message[i];\n"
|
| + " exception = '$exception${message[i]}';\n"
|
| " }\n"
|
| " }\n"
|
| " messageCount++;\n"
|
|
|