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

Unified Diff: tests/language/type_checks_in_factory_method_test.dart

Issue 10891020: Update almost all tests (except co19) to use the new try-catch syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge. Created 8 years, 4 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/type_checks_in_factory_method_test.dart
diff --git a/tests/language/type_checks_in_factory_method_test.dart b/tests/language/type_checks_in_factory_method_test.dart
index 13686d5fdeac1b72d3d7b1f46fe056abbf8a360e..8a554277bd0d6f0e413c1cdc3ba8bbe34f549f27 100644
--- a/tests/language/type_checks_in_factory_method_test.dart
+++ b/tests/language/type_checks_in_factory_method_test.dart
@@ -32,7 +32,7 @@ main() {
try {
Foo<int> value2 = new Foo<int>.from();
- } catch (TypeError e) {
+ } on TypeError catch (e) {
gotError = true;
}
Expect.equals(true, gotError);
« no previous file with comments | « tests/language/type_cast_vm_test.dart ('k') | tests/language/type_variable_identifier_expression_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698