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

Unified Diff: pkg/front_end/lib/src/fasta/builder/type_variable_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/type_variable_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart b/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
index ae843dbbfb0bce5905bdf9b2cb1f811fc215fddc..ee94d2c88a383197870a58c435fa3949ea534df0 100644
--- a/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
@@ -4,17 +4,14 @@
library fasta.type_variable_builder;
-import 'builder.dart' show
- LibraryBuilder,
- TypeBuilder,
- TypeDeclarationBuilder;
+import 'builder.dart' show LibraryBuilder, TypeBuilder, TypeDeclarationBuilder;
abstract class TypeVariableBuilder<T extends TypeBuilder, R>
extends TypeDeclarationBuilder<T, R> {
T bound;
- TypeVariableBuilder(String name, this.bound, LibraryBuilder compilationUnit,
- int charOffset)
+ TypeVariableBuilder(
+ String name, this.bound, LibraryBuilder compilationUnit, int charOffset)
: super(null, null, name, compilationUnit, charOffset);
String get debugName => "TypeVariableBuilder";
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart ('k') | pkg/front_end/lib/src/fasta/combinator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698