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

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

Issue 2603263002: Prefix resolution_types with Resolution. (Closed)
Patch Set: Rebased Created 3 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/compiler/lib/src/js_backend/custom_elements_analysis.dart
diff --git a/pkg/compiler/lib/src/js_backend/custom_elements_analysis.dart b/pkg/compiler/lib/src/js_backend/custom_elements_analysis.dart
index 00b9916fdedd2b821308a33ef630d3400576ad01..a89b86d24b591a1f34254283fb11395e05ef446b 100644
--- a/pkg/compiler/lib/src/js_backend/custom_elements_analysis.dart
+++ b/pkg/compiler/lib/src/js_backend/custom_elements_analysis.dart
@@ -86,7 +86,7 @@ class CustomElementsAnalysis {
joinFor(forResolution: forResolution).instantiatedClasses.add(classElement);
}
- void registerTypeLiteral(DartType type) {
+ void registerTypeLiteral(ResolutionDartType type) {
if (type.isInterfaceType) {
// TODO(sra): If we had a flow query from the type literal expression to
// the Type argument of the metadata lookup, we could tell if this type
@@ -189,7 +189,7 @@ class CustomElementsAnalysisJoin {
}
TypeConstantValue makeTypeConstant(ClassElement element) {
- DartType elementType = element.rawType;
+ ResolutionDartType elementType = element.rawType;
return backend.constantSystem.createType(compiler, elementType);
}
« no previous file with comments | « pkg/compiler/lib/src/js_backend/constant_system_javascript.dart ('k') | pkg/compiler/lib/src/js_backend/enqueuer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698