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

Unified Diff: pkg/compiler/lib/src/util/indentation.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/util/enumset.dart ('k') | pkg/compiler/lib/src/util/link.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/util/indentation.dart
diff --git a/pkg/compiler/lib/src/util/indentation.dart b/pkg/compiler/lib/src/util/indentation.dart
index ddbeafa7f11027e991e0688adaff1a2d00498712..9709f78de72268954f949ea0ea89fd740a88196b 100644
--- a/pkg/compiler/lib/src/util/indentation.dart
+++ b/pkg/compiler/lib/src/util/indentation.dart
@@ -25,12 +25,12 @@ class Indentation {
/// The indentation unit, defaulting to two spaces. May be overwritten.
String _indentationUnit = " ";
String get indentationUnit => _indentationUnit;
- set indentationUnit(String value) {
- if (value != _indentationUnit) {
- _indentationUnit = value;
- _indentList = <String>[""];
- }
- }
+ set indentationUnit(String value) {
+ if (value != _indentationUnit) {
+ _indentationUnit = value;
+ _indentList = <String>[""];
+ }
+ }
/// Increases the current level of indentation.
void indentMore() {
@@ -53,7 +53,6 @@ class Indentation {
}
abstract class Tagging<N> implements Indentation {
-
StringBuffer sb = new StringBuffer();
Link<String> tagStack = const Link<String>();
« no previous file with comments | « pkg/compiler/lib/src/util/enumset.dart ('k') | pkg/compiler/lib/src/util/link.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698