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

Unified Diff: pkg/analyzer_experimental/lib/src/services/formatter_impl.dart

Issue 19668003: Formatter check-point (blank-space preservation experiment). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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 | « no previous file | pkg/analyzer_experimental/test/services/formatter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_experimental/lib/src/services/formatter_impl.dart
===================================================================
--- pkg/analyzer_experimental/lib/src/services/formatter_impl.dart (revision 25110)
+++ pkg/analyzer_experimental/lib/src/services/formatter_impl.dart (working copy)
@@ -51,7 +51,6 @@
message = 'an analysis error occured during format';
String toString() => 'FormatterException: $message';
-
}
/// Specifies the kind of code snippet to format.
@@ -87,6 +86,8 @@
final FormatterOptions options;
final errors = <AnalysisError>[];
+ LineInfo lineInfo;
+
CodeFormatterImpl(this.options);
String format(CodeKind kind, String source, {int offset, int end,
@@ -98,7 +99,7 @@
var node = parse(kind, start);
checkForErrors();
- var formatter = new SourceVisitor(options);
+ var formatter = new SourceVisitor(options, lineInfo);
node.accept(formatter);
return formatter.writer.toString();
@@ -130,7 +131,9 @@
Token tokenize(String source) {
var scanner = new StringScanner(null, source, this);
- return scanner.tokenize();
+ var token = scanner.tokenize();
+ lineInfo = new LineInfo(scanner.lineStarts);
+ return token;
}
}
@@ -143,9 +146,11 @@
/// The writer to which the source is to be written.
SourceWriter writer;
+ LineInfo lineInfo;
+
/// Initialize a newly created visitor to write source code representing
/// the visited nodes to the given [writer].
- SourceVisitor(FormatterOptions options) :
+ SourceVisitor(FormatterOptions options, this.lineInfo) :
writer = new SourceWriter(indentCount: options.initialIndentationLevel,
lineSeparator: options.lineSeparator);
@@ -293,7 +298,10 @@
var prefix = scriptTag == null ? '' : ' ';
visitPrefixedList(prefix, directives, ' ');
prefix = scriptTag == null && directives.isEmpty ? '' : ' ';
- visitPrefixedList(prefix, node.declarations, ' ');
+ visitPrefixedListWithBlanks(prefix, node.declarations);
+
+ //TODO(pquitslund): move this?
+ writer.newline();
}
visitConditionalExpression(ConditionalExpression node) {
@@ -646,6 +654,11 @@
visitPrefixed(' ', node.expression);
}
+ visitNativeClause(NativeClause node) {
+ writer.print("native ");
+ visit(node.name);
+ }
+
visitNativeFunctionBody(NativeFunctionBody node) {
writer.print('native ');
visit(node.stringLiteral);
@@ -942,4 +955,29 @@
}
}
+ /// Print a list of [nodes], preserving blanklines between nodes.
Brian Wilkerson 2013/07/17 21:25:09 nit: "blanklines" --> "blank lines"
pquitslund 2013/07/17 21:44:13 Fixed!
+ visitPrefixedListWithBlanks(String prefix,
+ NodeList<ASTNode> nodes) {
+ if (nodes != null) {
+ var size = nodes.length;
+ if (size > 0) {
+ writer.print(prefix);
+ for (var i = 0; i < size; i++) {
+ if (i > 0) {
+ // Emit blanks lines
+ var lastLine =
+ lineInfo.getLocation(nodes[i-1].endToken.offset).lineNumber;
+ var currentLine =
+ lineInfo.getLocation(nodes[i].beginToken.offset).lineNumber;
+ var blanks = currentLine - lastLine;
+ for (var i = 0; i < blanks; i++) {
+ writer.newline();
+ }
+ }
+ nodes[i].accept(this);
+ }
+ }
+ }
+ }
+
}
« no previous file with comments | « no previous file | pkg/analyzer_experimental/test/services/formatter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698