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

Unified Diff: tests/language_strong/full_stacktrace2_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/full_stacktrace2_test.dart
diff --git a/tests/language_strong/full_stacktrace2_test.dart b/tests/language_strong/full_stacktrace2_test.dart
index 5de34e05ae06bd498f5e89a9358dcd0b8d467c99..8b7dfb275654a45dd765f36ad5dce5ee235e68fc 100644
--- a/tests/language_strong/full_stacktrace2_test.dart
+++ b/tests/language_strong/full_stacktrace2_test.dart
@@ -7,13 +7,15 @@ import "package:expect/expect.dart";
void func1() {
throw new Exception("Test full stacktrace");
}
+
void func2() {
func1();
}
+
void func3() {
try {
func2();
- } on Object catch(e, s) {
+ } on Object catch (e, s) {
var fullTrace = s.toString();
Expect.isTrue(fullTrace.contains("func1"));
Expect.isTrue(fullTrace.contains("func2"));
@@ -24,17 +26,19 @@ void func3() {
Expect.isTrue(fullTrace.contains("func7"));
Expect.isTrue(fullTrace.contains("main"));
- rethrow; // This is a rethrow.
+ rethrow; // This is a rethrow.
}
}
+
int func4() {
func3();
return 1;
}
+
int func5() {
try {
func4();
- } on Object catch(e, s) {
+ } on Object catch (e, s) {
var fullTrace = s.toString();
Expect.isTrue(fullTrace.contains("func1"));
Expect.isTrue(fullTrace.contains("func2"));
@@ -47,14 +51,17 @@ int func5() {
}
return 1;
}
+
int func6() {
func5();
return 1;
}
+
int func7() {
func6();
return 1;
}
+
main() {
var i = func7();
Expect.equals(1, i);

Powered by Google App Engine
This is Rietveld 408576698