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

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

Issue 1859343004: dartfmt pkg/compiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months 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/typechecker.dart ('k') | pkg/compiler/lib/src/types/constants.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « pkg/compiler/lib/src/typechecker.dart ('k') | pkg/compiler/lib/src/types/constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698