| commit | a5d3c6f19a37c0bca10c67cd4e488c4adccdd3da | [log] [tgz] |
|---|---|---|
| author | Kevin Moore <kevmoo@users.noreply.github.com> | Sat Jul 10 20:46:14 2021 -0700 |
| committer | GitHub <noreply@github.com> | Sat Jul 10 20:46:14 2021 -0700 |
| tree | c75b54ff165f6aaaf4773e0a4d594af0b6488a6a | |
| parent | 51db4e3ad54369fb40c54058570de7971428b90c [diff] |
Dart format with latest SDK (dart-lang/io#81)
diff --git a/pkgs/io/lib/src/shell_words.dart b/pkgs/io/lib/src/shell_words.dart index d293e39..bfba529 100644 --- a/pkgs/io/lib/src/shell_words.dart +++ b/pkgs/io/lib/src/shell_words.dart
@@ -91,7 +91,9 @@ next == $backslash) { token.writeCharCode(next); } else { - token..writeCharCode($backslash)..writeCharCode(next); + token + ..writeCharCode($backslash) + ..writeCharCode(next); } } else { token.writeCharCode(scanner.readChar());