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

Unified Diff: pkg/analyzer/lib/error/error.dart

Issue 2541153002: Extract 'computeMissingOverrides' in ErrorVerifier. (Closed)
Patch Set: Created 4 years 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/lib/error/error.dart
diff --git a/pkg/analyzer/lib/error/error.dart b/pkg/analyzer/lib/error/error.dart
index 8a4f9e8e21cedaee417f8fe1261684e40950cdc1..ed18004fac3d225ea119ea38ade20d66c3f0ac33 100644
--- a/pkg/analyzer/lib/error/error.dart
+++ b/pkg/analyzer/lib/error/error.dart
@@ -872,17 +872,9 @@ class ErrorProperty<V> implements Comparable<ErrorProperty> {
static const ErrorProperty<String> PARTS_LIBRARY_NAME =
const ErrorProperty<String>('PARTS_LIBRARY_NAME', 1);
- /**
- * A property whose value is a list of [ExecutableElement] that should
- * be but are not implemented by a concrete class.
- */
- static const ErrorProperty<List<ExecutableElement>> UNIMPLEMENTED_METHODS =
- const ErrorProperty<List<ExecutableElement>>('UNIMPLEMENTED_METHODS', 2);
-
static const List<ErrorProperty> values = const [
NOT_INITIALIZED_FIELDS,
PARTS_LIBRARY_NAME,
- UNIMPLEMENTED_METHODS
];
/**
« no previous file with comments | « pkg/analysis_server/lib/src/services/correction/fix_internal.dart ('k') | pkg/analyzer/lib/src/generated/error_verifier.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698