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

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

Issue 656473003: Use directlyInstantiatedClasses instead of instantiatedClasses (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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: dart/tests/try/poi/forget_element_test.dart
diff --git a/dart/tests/try/poi/forget_element_test.dart b/dart/tests/try/poi/forget_element_test.dart
index be478554d3c41f3729fe416aea12c1d9d62f3cc5..519a49d091c68d6cb577c392460656e94e3e506c 100644
--- a/dart/tests/try/poi/forget_element_test.dart
+++ b/dart/tests/try/poi/forget_element_test.dart
@@ -229,7 +229,7 @@ class ForgetElementTestCase extends CompilerTestCase {
}
Iterable codegenClassesIn(LibraryElement library) {
- return codegenUniverse.instantiatedClasses.where(
+ return codegenUniverse.directlyInstantiatedClasses.where(
(ClassElement cls) => cls.library == library);
}
@@ -247,7 +247,7 @@ class ForgetElementTestCase extends CompilerTestCase {
}
Iterable resolutionClassesIn(LibraryElement library) {
- return resolutionUniverse.instantiatedClasses.where(
+ return resolutionUniverse.directlyInstantiatedClasses.where(
(ClassElement cls) => cls.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