| Index: pkg/analyzer/lib/src/services/formatter_impl.dart
|
| ===================================================================
|
| --- pkg/analyzer/lib/src/services/formatter_impl.dart (revision 31752)
|
| +++ pkg/analyzer/lib/src/services/formatter_impl.dart (working copy)
|
| @@ -382,7 +382,9 @@
|
| /// the visited nodes to the given [writer].
|
| SourceVisitor(FormatterOptions options, this.lineInfo, this.preSelection):
|
| writer = new SourceWriter(indentCount: options.initialIndentationLevel,
|
| - lineSeparator: options.lineSeparator),
|
| + lineSeparator: options.lineSeparator,
|
| + useTabs: options.tabsForIndent,
|
| + spacesPerIndent: options.spacesPerIndent),
|
| codeTransforms = options.codeTransforms;
|
|
|
| visitAdjacentStrings(AdjacentStrings node) {
|
|
|