| 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);
|
| }
|
|
|
|
|