| Index: sdk/lib/_internal/compiler/implementation/inferrer/simple_types_inferrer.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/inferrer/simple_types_inferrer.dart b/sdk/lib/_internal/compiler/implementation/inferrer/simple_types_inferrer.dart
|
| index 0e34fbd03faa11d7b46611083f25c8ff76b6c6d5..ca1ef9a41ad28ec33ffdc3a95a30c5b79d75b07d 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/inferrer/simple_types_inferrer.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/inferrer/simple_types_inferrer.dart
|
| @@ -946,7 +946,7 @@ class SimpleTypeInferrerVisitor<T>
|
| && Elements.isStaticOrTopLevelField(element)
|
| && compiler.world.fieldNeverChanges(element)) {
|
| var constant =
|
| - compiler.constantHandler.getConstantForVariable(element);
|
| + compiler.backend.constants.getConstantForVariable(element);
|
| if (constant != null && constant.isInt) {
|
| return constant.value;
|
| }
|
|
|