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

Unified Diff: pkg/analyzer/test/src/summary/summary_sdk_test.dart

Issue 1584313005: Downplay the distinction between linked and prelinked summaries. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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/src/summary/summary_sdk_test.dart
diff --git a/pkg/analyzer/test/src/summary/summary_sdk_test.dart b/pkg/analyzer/test/src/summary/summary_sdk_test.dart
index 5ec807e35754b90e5ec61c16c21eed09255878cc..59d6cf42009a642d73eff2cad444053334686bdb 100644
--- a/pkg/analyzer/test/src/summary/summary_sdk_test.dart
+++ b/pkg/analyzer/test/src/summary/summary_sdk_test.dart
@@ -48,11 +48,11 @@ class SummarySdkAnalysisContextTest {
return;
}
// verify that there are at least some interesting libraries in the bundle
- expect(sdkBundle.prelinkedLibraryUris, contains('dart:core'));
- expect(sdkBundle.prelinkedLibraryUris, contains('dart:async'));
- expect(sdkBundle.prelinkedLibraryUris, contains('dart:html'));
+ expect(sdkBundle.linkedLibraryUris, contains('dart:core'));
+ expect(sdkBundle.linkedLibraryUris, contains('dart:async'));
+ expect(sdkBundle.linkedLibraryUris, contains('dart:html'));
// verify every library
- for (String uri in sdkBundle.prelinkedLibraryUris) {
+ for (String uri in sdkBundle.linkedLibraryUris) {
// TODO(scheglov) breaks at _LibraryResynthesizer.buildImplicitTopLevelVariable
if (uri == 'dart:io' || uri == 'dart:_isolate_helper') {
continue;
« no previous file with comments | « pkg/analyzer/test/src/summary/resynthesize_test.dart ('k') | pkg/analyzer/test/src/summary/summary_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698