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

Unified Diff: pkg/compiler/lib/src/js_backend/impact_transformer.dart

Issue 2918913003: Handle list and map literals (Closed)
Patch Set: Updated cf. comments 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
« no previous file with comments | « pkg/compiler/lib/src/elements/types.dart ('k') | pkg/compiler/lib/src/js_backend/runtime_types.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_backend/impact_transformer.dart
diff --git a/pkg/compiler/lib/src/js_backend/impact_transformer.dart b/pkg/compiler/lib/src/js_backend/impact_transformer.dart
index 4080769d6f52c4d7efd6f75ced90ef7608f6362e..f6df88a73314994de0115749405b1828ca9b1918 100644
--- a/pkg/compiler/lib/src/js_backend/impact_transformer.dart
+++ b/pkg/compiler/lib/src/js_backend/impact_transformer.dart
@@ -12,7 +12,6 @@ import '../common/resolution.dart' show ResolutionImpact;
import '../constants/expressions.dart';
import '../common_elements.dart' show ElementEnvironment;
import '../elements/entities.dart';
-import '../elements/resolution_types.dart' show Types;
import '../elements/types.dart';
import '../native/enqueue.dart';
import '../native/native.dart' as native;
@@ -289,7 +288,7 @@ class JavaScriptImpactTransformer extends ImpactTransformer {
// defined (that is the enclosing class of the current element being
// resolved) and the class of [type]. If the class of [type] requires RTI,
// then the class of the type variable does too.
- ClassEntity contextClass = Types.getClassContext(interfaceType);
+ ClassEntity contextClass = DartTypes.getClassContext(interfaceType);
if (contextClass != null) {
_rtiNeedBuilder.registerRtiDependency(
interfaceType.element, contextClass);
« no previous file with comments | « pkg/compiler/lib/src/elements/types.dart ('k') | pkg/compiler/lib/src/js_backend/runtime_types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698