| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index e0f381ac6f5c26d761336a633323d2f05ea65a1e..88ece01b852d6f1d04c9514c9672e12bdcf97900 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -155,7 +155,7 @@ class HGraph {
|
| if (constant.isString()) return HType.STRING;
|
| if (constant.isList()) return HType.READABLE_ARRAY;
|
| ObjectConstant objectConstant = constant;
|
| - return new HExactType(objectConstant.type);
|
| + return new HBoundedType.exact(objectConstant.type);
|
| }
|
|
|
| HConstant addConstant(Constant constant) {
|
|
|