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

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

Issue 1355773002: Make type system changes backwards compatible (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 0e5a203b10b9a3fcf5ac5d3c935cf0e6bc9c7ab3..2eace3fd5db0aae94fab7701461dbe85101daeae 100644
--- a/pkg/analyzer/test/generated/resolver_test.dart
+++ b/pkg/analyzer/test/generated/resolver_test.dart
@@ -1987,8 +1987,8 @@ class ElementResolverTest extends EngineTestCase {
_definingLibrary.definingCompilationUnit = definingCompilationUnit;
Library library = new Library(context, _listener, source);
library.libraryElement = _definingLibrary;
- _visitor = new ResolverVisitor(library.libraryElement, source,
- _typeProvider, context.typeSystem, library.errorListener,
+ _visitor = new ResolverVisitor(
+ library.libraryElement, source, _typeProvider, library.errorListener,
nameScope: library.libraryScope,
inheritanceManager: library.inheritanceManager);
try {
@@ -11386,8 +11386,8 @@ class StaticTypeAnalyzerTest extends EngineTestCase {
definingLibrary.definingCompilationUnit = definingCompilationUnit;
Library library = new Library(context, _listener, source);
library.libraryElement = definingLibrary;
- _visitor = new ResolverVisitor(library.libraryElement, source,
- _typeProvider, context.typeSystem, library.errorListener,
+ _visitor = new ResolverVisitor(
+ library.libraryElement, source, _typeProvider, library.errorListener,
nameScope: library.libraryScope,
inheritanceManager: library.inheritanceManager);
_visitor.overrideManager.enterScope();

Powered by Google App Engine
This is Rietveld 408576698