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

Unified Diff: pkg/compiler/lib/src/types/map_type_mask.dart

Issue 693183006: Revert "Move dart2js from sdk/lib/_internal/compiler to pkg/compiler" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/types/forwarding_type_mask.dart ('k') | pkg/compiler/lib/src/types/type_mask.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/types/map_type_mask.dart
diff --git a/pkg/compiler/lib/src/types/map_type_mask.dart b/pkg/compiler/lib/src/types/map_type_mask.dart
deleted file mode 100644
index 39ed50bf613d5cf13c89023e9ff759dbc3124ace..0000000000000000000000000000000000000000
--- a/pkg/compiler/lib/src/types/map_type_mask.dart
+++ /dev/null
@@ -1,120 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-part of types;
-
-/**
- * A [MapTypeMask] is a [TypeMask] for a specific allocation
- * site of a map (currently only internal Map class) that will get specialized
- * once the [TypeGraphInferrer] phase finds a key and/or value type for it.
- */
-class MapTypeMask extends ForwardingTypeMask {
- final TypeMask forwardTo;
-
- // The [Node] where this type mask was created.
- final Node allocationNode;
-
- // The [Element] where this type mask was created.
- final Element allocationElement;
-
- // The value type of this map.
- final TypeMask valueType;
-
- // The key type of this map.
- final TypeMask keyType;
-
- MapTypeMask(this.forwardTo,
- this.allocationNode,
- this.allocationElement,
- this.keyType,
- this.valueType);
-
- TypeMask nullable() {
- return isNullable
- ? this
- : new MapTypeMask(forwardTo.nullable(),
- allocationNode,
- allocationElement,
- keyType,
- valueType);
- }
-
- TypeMask nonNullable() {
- return isNullable
- ? new MapTypeMask(forwardTo.nonNullable(),
- allocationNode,
- allocationElement,
- keyType,
- valueType)
- : this;
- }
-
- bool get isContainer => false;
- bool get isMap => true;
- bool get isExact => true;
-
- bool equalsDisregardNull(other) {
- if (other is! MapTypeMask) return false;
- return super.equalsDisregardNull(other) &&
- allocationNode == other.allocationNode &&
- keyType == other.keyType &&
- valueType == other.valueType;
- }
-
- TypeMask intersection(TypeMask other, ClassWorld classWorld) {
- TypeMask forwardIntersection = forwardTo.intersection(other, classWorld);
- if (forwardIntersection.isEmpty) return forwardIntersection;
- return forwardIntersection.isNullable
- ? nullable()
- : nonNullable();
- }
-
- TypeMask union(other, ClassWorld classWorld) {
- if (this == other) {
- return this;
- } else if (equalsDisregardNull(other)) {
- return other.isNullable ? other : this;
- } else if (other.isEmpty) {
- return other.isNullable ? this.nullable() : this;
- } else if (other.isMap &&
- keyType != null &&
- other.keyType != null &&
- valueType != null &&
- other.valueType != null) {
- TypeMask newKeyType =
- keyType.union(other.keyType, classWorld);
- TypeMask newValueType =
- valueType.union(other.valueType, classWorld);
- TypeMask newForwardTo = forwardTo.union(other.forwardTo, classWorld);
- return new MapTypeMask(
- newForwardTo, null, null, newKeyType, newValueType);
- } else if (other.isDictionary) {
- assert(other.keyType == classWorld.compiler.typesTask.stringType);
- TypeMask newKeyType = keyType.union(other.keyType, classWorld);
- TypeMask newValueType =
- other.typeMap.values.fold(keyType, (p,n) => p.union(n, classWorld));
- TypeMask newForwardTo = forwardTo.union(other.forwardTo, classWorld);
- MapTypeMask newMapTypeMask = new MapTypeMask(
- newForwardTo,
- allocationNode == other.allocationNode ? allocationNode : null,
- allocationElement == other.allocationElement ? allocationElement
- : null,
- newKeyType, newValueType);
- return newMapTypeMask;
- } else {
- return forwardTo.union(other, classWorld);
- }
- }
-
- bool operator==(other) => super == other;
-
- int get hashCode {
- return computeHashCode(
- allocationNode, isNullable, keyType, valueType, forwardTo);
- }
-
- String toString() {
- return 'Map mask: [$keyType/$valueType] type: $forwardTo';
- }
-}
« no previous file with comments | « pkg/compiler/lib/src/types/forwarding_type_mask.dart ('k') | pkg/compiler/lib/src/types/type_mask.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698