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

Unified Diff: tests/try/poi/forget_element_test.dart

Issue 1413613010: Normalize type masks to use the least upper instantiated subclass/type. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix try/poi Created 5 years, 1 month 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 | « tests/compiler/dart2js/union_type_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/try/poi/forget_element_test.dart
diff --git a/tests/try/poi/forget_element_test.dart b/tests/try/poi/forget_element_test.dart
index 22b61ceba0ad65e1f7b2f77c7511ab3ec9ac3411..095b52cecb0d9c125ecc67063d83b1a771ab52d2 100644
--- a/tests/try/poi/forget_element_test.dart
+++ b/tests/try/poi/forget_element_test.dart
@@ -260,12 +260,12 @@ class ForgetElementTestCase extends CompilerTestCase {
}
Iterable codegenSeenClassesIn(LibraryElement library) {
- return compiler.codegenWorld.allInstantiatedClasses.where(
+ return compiler.enqueuer.codegen.processedClasses.where(
(e) => e.library == library);
}
Iterable resolutionSeenClassesIn(LibraryElement library) {
- return compiler.resolverWorld.allInstantiatedClasses.where(
+ return compiler.enqueuer.resolution.processedClasses.where(
(e) => e.library == library);
}
}
« no previous file with comments | « tests/compiler/dart2js/union_type_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698