| Index: pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| diff --git a/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart b/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| index 4bb654a97f8dd5ad7de866c73d60c7f5a0b1528f..b86d5b511982c93c64bdd3ef1d06d45109d26635 100644
|
| --- a/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| +++ b/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| @@ -436,6 +436,12 @@ class ConcreteTypeSystem extends TypeSystem<ConcreteType> {
|
| return _stringType;
|
| }
|
|
|
| + @override
|
| + ConcreteType boolLiteralType(_) {
|
| + inferrer.augmentSeenClasses(compiler.backend.boolImplementation);
|
| + return _boolType;
|
| + }
|
| +
|
| /**
|
| * Returns the [TypeMask] representation of [baseType].
|
| */
|
|
|