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); |