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

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

Issue 649173002: Fix forget_element_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | 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 ce670e8131fd7a752dcbf6fc2bc3613f112bf0cf..be478554d3c41f3729fe416aea12c1d9d62f3cc5 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.enqueuer.codegen.seenClasses.where(
+ return compiler.codegenWorld.allInstantiatedClasses.where(
(e) => e.library == library);
}
Iterable resolutionSeenClassesIn(LibraryElement library) {
- return compiler.enqueuer.resolution.seenClasses.where(
+ return compiler.resolverWorld.allInstantiatedClasses.where(
(e) => e.library == library);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698