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

Unified Diff: pkg/analyzer/test/generated/resolver_test.dart

Issue 1026093002: Fix hints in the analyzer package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
Index: pkg/analyzer/test/generated/resolver_test.dart
diff --git a/pkg/analyzer/test/generated/resolver_test.dart b/pkg/analyzer/test/generated/resolver_test.dart
index 07776ff81ef684bd2a98f57d7dd9fb6786268c96..539bf0d8001a85c7ec2a5e6495b057f139338ffa 100644
--- a/pkg/analyzer/test/generated/resolver_test.dart
+++ b/pkg/analyzer/test/generated/resolver_test.dart
@@ -11498,7 +11498,7 @@ class TypeOverrideManagerTest extends EngineTestCase {
try {
manager.exitScope();
fail("Expected IllegalStateException");
- } on IllegalStateException catch (exception) {
+ } on IllegalStateException {
// Expected
}
}
@@ -11510,7 +11510,7 @@ class TypeOverrideManagerTest extends EngineTestCase {
try {
manager.exitScope();
fail("Expected IllegalStateException");
- } on IllegalStateException catch (exception) {
+ } on IllegalStateException {
// Expected
}
}
@@ -11524,7 +11524,7 @@ class TypeOverrideManagerTest extends EngineTestCase {
try {
manager.exitScope();
fail("Expected IllegalStateException");
- } on IllegalStateException catch (exception) {
+ } on IllegalStateException {
// Expected
}
}
« no previous file with comments | « pkg/analyzer/test/generated/incremental_resolver_test.dart ('k') | pkg/analyzer/test/generated/utilities_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698