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

Unified Diff: pkg/compiler/lib/src/universe/resolution_world_builder.dart

Issue 2873113004: Add equivalence check of NativeData and InterceptorData (Closed)
Patch Set: Created 3 years, 7 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/compiler/lib/src/universe/resolution_world_builder.dart
diff --git a/pkg/compiler/lib/src/universe/resolution_world_builder.dart b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
index d09c7881fd750ae9dbd49c4576d386022213b996..c5b6356d1547f67e974a42ea57a492ac4f358a78 100644
--- a/pkg/compiler/lib/src/universe/resolution_world_builder.dart
+++ b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
@@ -938,13 +938,12 @@ abstract class KernelResolutionWorldBuilderBase
Map<ClassEntity, Set<ClassEntity>> typesImplementedBySubclasses =
populateHierarchyNodes();
_closed = true;
- // TODO(johnniwinther): Implement this.
return _closedWorldCache = new KernelClosedWorld(
commonElements: _commonElements,
+ nativeData: _nativeDataBuilder.close(),
+ interceptorData: _interceptorDataBuilder.close(),
// TODO(johnniwinther): Compute these.
constantSystem: null,
- nativeData: _nativeDataBuilder.close(),
- interceptorData: null,
backendUsage: null,
resolutionWorldBuilder: this,
functionSet: _allFunctions.close(),

Powered by Google App Engine
This is Rietveld 408576698