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

Unified Diff: tests/language_strong/error_stacktrace_test.dart

Issue 2770063002: Revert "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « tests/language_strong/enum_syntax_test.dart ('k') | tests/language_strong/external_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/error_stacktrace_test.dart
diff --git a/tests/language_strong/error_stacktrace_test.dart b/tests/language_strong/error_stacktrace_test.dart
index 4ec5dbd47c9177b324447b00bc351479bf885ea5..9cb7f5a6130612b511b6c52ce4d7e18d5340b789 100644
--- a/tests/language_strong/error_stacktrace_test.dart
+++ b/tests/language_strong/error_stacktrace_test.dart
@@ -14,15 +14,12 @@ class Helper1 {
static int func1() {
return func2();
}
-
static int func2() {
return func3();
}
-
static int func3() {
return func4();
}
-
static int func4() {
var i = 0;
try {
@@ -34,7 +31,6 @@ class Helper1 {
}
return i;
}
-
static void func5() {
// Throw an Error.
throw new ArgumentError("ArgumentError in func5");
@@ -45,15 +41,12 @@ class Helper2 {
static int func1() {
return func2();
}
-
static int func2() {
return func3();
}
-
static int func3() {
return func4();
}
-
static int func4() {
var i = 0;
try {
@@ -66,7 +59,6 @@ class Helper2 {
}
return i;
}
-
static List func5() {
// Throw an Error.
throw new ArgumentError("ArgumentError in func5");
@@ -77,15 +69,12 @@ class Helper3 {
static int func1() {
return func2();
}
-
static int func2() {
return func3();
}
-
static int func3() {
return func4();
}
-
static int func4() {
var i = 0;
try {
@@ -103,7 +92,6 @@ class Helper3 {
}
return i;
}
-
static List func5() {
// Throw an Exception (any random object).
throw new MyException("MyException in func5");
« no previous file with comments | « tests/language_strong/enum_syntax_test.dart ('k') | tests/language_strong/external_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698