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

Unified Diff: samples/tests/samples/proxy/mint_maker_fully_isolated_generated_test.dart

Issue 10565029: Fix + usages. (Closed) Base URL: https://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
Index: samples/tests/samples/proxy/mint_maker_fully_isolated_generated_test.dart
diff --git a/samples/tests/samples/proxy/mint_maker_fully_isolated_generated_test.dart b/samples/tests/samples/proxy/mint_maker_fully_isolated_generated_test.dart
index 8ef852b3f02be0b9b36ae1f71f1fdd3be70e04ee..f44c4a1ea665518055d530326b0f223233afed1a 100644
--- a/samples/tests/samples/proxy/mint_maker_fully_isolated_generated_test.dart
+++ b/samples/tests/samples/proxy/mint_maker_fully_isolated_generated_test.dart
@@ -63,7 +63,7 @@ class Purse$Dispatcher extends Dispatcher<Purse> {
reply(deposit);
} else {
// TODO(kasperl,benl): Somehow throw an exception instead.
- reply("Exception: command '" + command + "' not understood by Purse.");
+ reply("Exception: command '$command' not understood by Purse.");
}
}
}
@@ -137,7 +137,7 @@ class PowerfulPurse$Dispatcher extends Dispatcher<PowerfulPurse> {
reply(port);
} else {
// TODO(kasperl,benl): Somehow throw an exception instead.
- reply("Exception: command '" + command + "' not understood by PowerfulPurse.");
+ reply("Exception: command '$command' not understood by PowerfulPurse.");
}
}
}
@@ -201,7 +201,7 @@ class Mint$Dispatcher extends Dispatcher<Mint> {
reply(promote);
} else {
// TODO(kasperl,benl): Somehow throw an exception instead.
- reply("Exception: command '" + command + "' not understood by Mint.");
+ reply("Exception: command '$command' not understood by Mint.");
}
}
}

Powered by Google App Engine
This is Rietveld 408576698