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

Unified Diff: pkg/compiler/lib/src/js_model/js_strategy.dart

Issue 2970673004: Handle static fields in js_model/model_test (Closed)
Patch Set: Updated cf. comment Created 3 years, 5 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 | « pkg/compiler/lib/src/js_model/elements.dart ('k') | pkg/compiler/lib/src/kernel/element_map_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_model/js_strategy.dart
diff --git a/pkg/compiler/lib/src/js_model/js_strategy.dart b/pkg/compiler/lib/src/js_model/js_strategy.dart
index 972fda507438b14b898529b6230ff240579b07f3..0ab3cb3ff8ab08ceb7c8a8d4586020dec2196aae 100644
--- a/pkg/compiler/lib/src/js_model/js_strategy.dart
+++ b/pkg/compiler/lib/src/js_model/js_strategy.dart
@@ -123,7 +123,7 @@ class JsBackendStrategy implements KernelBackendStrategy {
uses.map(_map.toBackendClass).toSet();
});
- return new JsClosedWorld(
+ return new JsClosedWorld(_elementMap,
elementEnvironment: _elementEnvironment,
dartTypes: _elementMap.types,
commonElements: _commonElements,
@@ -135,10 +135,10 @@ class JsBackendStrategy implements KernelBackendStrategy {
classSets: classSets,
implementedClasses: implementedClasses,
liveInstanceMembers: liveInstanceMembers,
+ mixinUses: mixinUses,
// TODO(johnniwinther): Support these.
allTypedefs: new ImmutableEmptySet<TypedefElement>(),
resolutionWorldBuilder: null,
- mixinUses: mixinUses,
typesImplementedBySubclasses: null);
}
« no previous file with comments | « pkg/compiler/lib/src/js_model/elements.dart ('k') | pkg/compiler/lib/src/kernel/element_map_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698