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

Unified Diff: tests/compiler/dart2js/serialization/native_data_test.dart

Issue 2998543002: Handle js interop members in impact computation. (Closed)
Patch Set: Updated cf. comments. Created 3 years, 4 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 | « tests/compiler/dart2js/kernel/impact_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/serialization/native_data_test.dart
diff --git a/tests/compiler/dart2js/serialization/native_data_test.dart b/tests/compiler/dart2js/serialization/native_data_test.dart
index 26b80f438684c6b7236dbf96eb48586db8774c41..2271414a5ef8357612c6f55a46b5696d13b83daa 100644
--- a/tests/compiler/dart2js/serialization/native_data_test.dart
+++ b/tests/compiler/dart2js/serialization/native_data_test.dart
@@ -58,19 +58,15 @@ Future checkNativeData(Uri uri, {bool verbose: false}) async {
NativeDataImpl nativeData1 = closedWorld1.nativeData;
NativeDataImpl nativeData2 = closedWorld2.nativeData;
- checkMaps(
- nativeData1.jsInteropLibraryNames,
- nativeData2.jsInteropLibraryNames,
- "NativeData.jsInteropLibraryNames",
- areElementsEquivalent,
- equality,
+ checkMaps(nativeData1.jsInteropLibraries, nativeData2.jsInteropLibraries,
+ "NativeData.jsInteropLibraryNames", areElementsEquivalent, equality,
verbose: verbose);
- checkMaps(nativeData1.jsInteropClassNames, nativeData2.jsInteropClassNames,
+ checkMaps(nativeData1.jsInteropClasses, nativeData2.jsInteropClasses,
"NativeData.jsInteropClassNames", areElementsEquivalent, equality,
verbose: verbose);
- checkMaps(nativeData1.jsInteropMemberNames, nativeData2.jsInteropMemberNames,
+ checkMaps(nativeData1.jsInteropMembers, nativeData2.jsInteropMembers,
"NativeData.jsInteropMemberNames", areElementsEquivalent, equality,
verbose: verbose);
« no previous file with comments | « tests/compiler/dart2js/kernel/impact_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698