Skip to content

Commit a5d3c6f

Browse files
authored
Dart format with latest SDK (dart-archive/io#81)
1 parent 51db4e3 commit a5d3c6f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkgs/io/lib/src/shell_words.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ List<String> shellSplit(String command) {
9191
next == $backslash) {
9292
token.writeCharCode(next);
9393
} else {
94-
token..writeCharCode($backslash)..writeCharCode(next);
94+
token
95+
..writeCharCode($backslash)
96+
..writeCharCode(next);
9597
}
9698
} else {
9799
token.writeCharCode(scanner.readChar());

0 commit comments

Comments
 (0)