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

Unified Diff: pkg/front_end/lib/src/fasta/combinator.dart

Issue 2718113003: Run dartfmt on pkg/front_end/lib. (Closed)
Patch Set: Rerun after merging. Created 3 years, 10 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
Index: pkg/front_end/lib/src/fasta/combinator.dart
diff --git a/pkg/front_end/lib/src/fasta/combinator.dart b/pkg/front_end/lib/src/fasta/combinator.dart
index a0062c1b67117d87161aa2662fbbcbaedba150b9..9f9760757f60648c6592451bdbe090e697d18bd4 100644
--- a/pkg/front_end/lib/src/fasta/combinator.dart
+++ b/pkg/front_end/lib/src/fasta/combinator.dart
@@ -11,10 +11,10 @@ class Combinator {
Combinator(this.isShow, this.names, int charOffset, Uri fileUri);
- Combinator.show(Iterable <String> names, int charOffset, Uri fileUri)
+ Combinator.show(Iterable<String> names, int charOffset, Uri fileUri)
: this(true, new Set<String>.from(names), charOffset, fileUri);
- Combinator.hide(Iterable <String> names, int charOffset, Uri fileUri)
+ Combinator.hide(Iterable<String> names, int charOffset, Uri fileUri)
: this(false, new Set<String>.from(names), charOffset, fileUri);
bool get isHide => !isShow;
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart ('k') | pkg/front_end/lib/src/fasta/command_line.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698