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

Unified Diff: tests/language_strong/try_catch3_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/language_strong/try_catch3_test.dart
diff --git a/tests/language_strong/try_catch3_test.dart b/tests/language_strong/try_catch3_test.dart
index 09cf98bd1148a7c891f6cda3ab28b7ee0fab4786..e83cd1079a3af2992f717c2c22d40953811badad 100644
--- a/tests/language_strong/try_catch3_test.dart
+++ b/tests/language_strong/try_catch3_test.dart
@@ -13,19 +13,25 @@ abstract class TestException {
class MyException implements TestException {
const MyException([String message = ""]) : this._message = message;
- String getMessage() { return _message; }
+ String getMessage() {
+ return _message;
+ }
+
final String _message;
}
class MyParameterizedException<U, V> implements TestException {
const MyParameterizedException([String message = ""])
: this._message = message;
- String getMessage() { return _message; }
+ String getMessage() {
+ return _message;
+ }
+
final String _message;
}
class StackTrace {
- StackTrace() { }
+ StackTrace() {}
printStackTrace(TestException ex) {
print(ex);
}

Powered by Google App Engine
This is Rietveld 408576698