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

Unified Diff: pkg/compiler/lib/src/serialization/system.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/serialization/system.dart
diff --git a/pkg/compiler/lib/src/serialization/system.dart b/pkg/compiler/lib/src/serialization/system.dart
index 26dd43417f43536c52710b0a6d2d32824efa4183..12b4adb41cd2724d3feef0644eaac5c7092e948b 100644
--- a/pkg/compiler/lib/src/serialization/system.dart
+++ b/pkg/compiler/lib/src/serialization/system.dart
@@ -169,13 +169,13 @@ class CompilationDeserializerSystem extends ResolutionDeserializerSystem {
return _resolutionImpactDeserializer.registerResolutionImpact(constructor,
() {
List<TypeUse> typeUses = <TypeUse>[];
- void addCheckedModeCheck(DartType type) {
+ void addCheckedModeCheck(ResolutionDartType type) {
if (!type.isDynamic) {
typeUses.add(new TypeUse.checkedModeCheck(type));
}
}
- FunctionType type = constructor.type;
+ ResolutionFunctionType type = constructor.type;
// TODO(johnniwinther): Remove this substitution when synthesized
// constructors handle type variables correctly.
type = type.substByContext(constructor.enclosingClass
« no previous file with comments | « pkg/compiler/lib/src/serialization/serialization_util.dart ('k') | pkg/compiler/lib/src/serialization/type_serialization.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698