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

Unified Diff: pkg/analyzer/lib/src/task/dart.dart

Issue 1502213002: Remove deprecated code (Closed) Base URL: https://github.com/dart-lang/sdk.git@analyzer-breaking-0.27
Patch Set: Created 5 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
« no previous file with comments | « pkg/analyzer/lib/src/generated/testing/html_factory.dart ('k') | pkg/analyzer/test/enum_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/task/dart.dart
diff --git a/pkg/analyzer/lib/src/task/dart.dart b/pkg/analyzer/lib/src/task/dart.dart
index 2087764700ab205fd97380a49915aa4884127b41..d542e97a53743eb2d76c008a811dc153c6f3ca84 100644
--- a/pkg/analyzer/lib/src/task/dart.dart
+++ b/pkg/analyzer/lib/src/task/dart.dart
@@ -3596,11 +3596,8 @@ class PartiallyResolveUnitReferencesTask extends SourceBasedAnalysisTask {
//
// Resolve references and record outputs.
//
- InheritanceManager inheritanceManager =
- new InheritanceManager(libraryElement);
PartialResolverVisitor visitor = new PartialResolverVisitor(libraryElement,
- unitElement.source, typeProvider, AnalysisErrorListener.NULL_LISTENER,
- inheritanceManager: inheritanceManager);
+ unitElement.source, typeProvider, AnalysisErrorListener.NULL_LISTENER);
unit.accept(visitor);
//
// Record outputs.
@@ -4386,14 +4383,11 @@ class ResolveInstanceFieldsInUnitTask extends SourceBasedAnalysisTask {
// the size of the enclosing class, and hence incrementally resolving each
// field was quadratic. We may wish to revisit this if we can resolve
// this performance issue.
- InheritanceManager inheritanceManager =
- new InheritanceManager(libraryElement);
PartialResolverVisitor visitor = new PartialResolverVisitor(
libraryElement,
unitElement.source,
typeProvider,
- AnalysisErrorListener.NULL_LISTENER,
- inheritanceManager: inheritanceManager);
+ AnalysisErrorListener.NULL_LISTENER);
unit.accept(visitor);
}
//
« no previous file with comments | « pkg/analyzer/lib/src/generated/testing/html_factory.dart ('k') | pkg/analyzer/test/enum_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698