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

Unified Diff: pkg/front_end/lib/src/fasta/builder/mixin_application_builder.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/builder/mixin_application_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart b/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
index 5e0a052b63b33eb7410663c02eeab525ecc127fa..b80e382e78c672059eaf7e0e429b84dbcb91dabc 100644
--- a/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
@@ -4,24 +4,20 @@
library fasta.mixin_application_builder;
-import '../errors.dart' show
- internalError;
+import '../errors.dart' show internalError;
-import 'builder.dart' show
- TypeBuilder,
- TypeDeclarationBuilder,
- TypeVariableBuilder;
+import 'builder.dart'
+ show TypeBuilder, TypeDeclarationBuilder, TypeVariableBuilder;
-import 'scope.dart' show
- Scope;
+import 'scope.dart' show Scope;
abstract class MixinApplicationBuilder<T extends TypeBuilder>
extends TypeBuilder {
final T supertype;
final List<T> mixins;
- MixinApplicationBuilder(this.supertype, this.mixins, int charOffset,
- Uri fileUri)
+ MixinApplicationBuilder(
+ this.supertype, this.mixins, int charOffset, Uri fileUri)
: super(charOffset, fileUri);
void set typeVariables(List<TypeVariableBuilder> variables);
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart ('k') | pkg/front_end/lib/src/fasta/builder/modifier_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698