| Index: pkg/compiler/lib/src/types/abstract_value_domain.dart
|
| diff --git a/pkg/compiler/lib/src/types/abstract_value_domain.dart b/pkg/compiler/lib/src/types/abstract_value_domain.dart
|
| index 9adc8685395616f3052d167a11b57a617801b3b9..e19da52e159269c3e531c0ce8284eddbac7a2a53 100644
|
| --- a/pkg/compiler/lib/src/types/abstract_value_domain.dart
|
| +++ b/pkg/compiler/lib/src/types/abstract_value_domain.dart
|
| @@ -9,9 +9,7 @@ import '../dart_types.dart';
|
| import '../elements/elements.dart';
|
| import '../universe/selector.dart' show Selector;
|
|
|
| -enum AbstractBool {
|
| - True, False, Maybe, Nothing
|
| -}
|
| +enum AbstractBool { True, False, Maybe, Nothing }
|
|
|
| /// A value in an abstraction of runtime values.
|
| abstract class AbstractValue {}
|
| @@ -127,7 +125,7 @@ abstract class AbstractValueDomain {
|
| bool isDefinitelyMutableIndexable(AbstractValue t, {bool allowNull: false});
|
|
|
| bool isDefinitelyFixedLengthIndexable(AbstractValue t,
|
| - {bool allowNull: false});
|
| + {bool allowNull: false});
|
|
|
| bool isDefinitelyIntercepted(AbstractValue t, {bool allowNull});
|
|
|
| @@ -141,9 +139,8 @@ abstract class AbstractValueDomain {
|
|
|
| bool isMorePreciseOrEqual(AbstractValue t1, AbstractValue t2);
|
|
|
| - AbstractBool isSubtypeOf(AbstractValue value,
|
| - DartType type,
|
| - {bool allowNull});
|
| + AbstractBool isSubtypeOf(AbstractValue value, DartType type,
|
| + {bool allowNull});
|
|
|
| /// Returns whether [value] is one of the falsy values: false, 0, -0, NaN,
|
| /// the empty string, or null.
|
| @@ -167,6 +164,6 @@ abstract class AbstractValueDomain {
|
|
|
| /// Returns the type of the entry of [container] at a given index.
|
| /// Returns `null` if unknown.
|
| - AbstractValue indexWithConstant(AbstractValue container,
|
| - ConstantValue indexValue);
|
| + AbstractValue indexWithConstant(
|
| + AbstractValue container, ConstantValue indexValue);
|
| }
|
|
|