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

Unified Diff: pkg/compiler/lib/src/common/names.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/common/codegen.dart ('k') | pkg/compiler/lib/src/common/registry.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common/names.dart
diff --git a/pkg/compiler/lib/src/common/names.dart b/pkg/compiler/lib/src/common/names.dart
index 70ebabe33ffec12aa358701972e92acbdffbb71a..300d1765093b4d194bcd7a33244256514a9d6845 100644
--- a/pkg/compiler/lib/src/common/names.dart
+++ b/pkg/compiler/lib/src/common/names.dart
@@ -6,13 +6,9 @@
/// the compiler.
library dart2js.common.names;
-import '../elements/elements.dart' show
- Name,
- PublicName;
-import '../universe/call_structure.dart' show
- CallStructure;
-import '../universe/selector.dart' show
- Selector;
+import '../elements/elements.dart' show Name, PublicName;
+import '../universe/call_structure.dart' show CallStructure;
+import '../universe/selector.dart' show Selector;
/// [String]s commonly used.
class Identifiers {
@@ -106,8 +102,7 @@ class Selectors {
new Selector.call(Names.toString_, CallStructure.NO_ARGS);
/// The selector for tearing off toString.
- static final Selector toStringGetter =
- new Selector.getter(Names.toString_);
+ static final Selector toStringGetter = new Selector.getter(Names.toString_);
static final Selector hashCode_ =
new Selector.getter(const PublicName('hashCode'));
@@ -131,9 +126,22 @@ class Selectors {
/// These objects are shared between different runs in batch-mode and must
/// thus remain in the [Selector.canonicalizedValues] map.
static final List<Selector> ALL = <Selector>[
- cancel, current, iterator, moveNext, noSuchMethod_, noSuchMethodGetter,
- toString_, toStringGetter, hashCode_, compareTo, equals, length,
- codeUnitAt, index, runtimeType_];
+ cancel,
+ current,
+ iterator,
+ moveNext,
+ noSuchMethod_,
+ noSuchMethodGetter,
+ toString_,
+ toStringGetter,
+ hashCode_,
+ compareTo,
+ equals,
+ length,
+ codeUnitAt,
+ index,
+ runtimeType_
+ ];
}
/// [Uri]s commonly used.
« no previous file with comments | « pkg/compiler/lib/src/common/codegen.dart ('k') | pkg/compiler/lib/src/common/registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698