Chromium Code Reviews| Index: lib/src/scan.dart |
| diff --git a/lib/src/scan.dart b/lib/src/scan.dart |
| index 6ba7a725fb898c0480ea2e41776045d3222b5184..96409dca2b8b86e5289552f8fd4a395c11d24c74 100644 |
| --- a/lib/src/scan.dart |
| +++ b/lib/src/scan.dart |
| @@ -37,8 +37,8 @@ final whitespace = new RegExp("(?:${_lws.pattern})*"); |
| /// |
| /// Once this is finished, [scanner] will be at the next non-LWS character in |
| /// the string, or the end of the string. |
| -List/*<T>*/ parseList/*<T>*/(StringScanner scanner, /*=T*/ parseElement()) { |
| - var result = /*<T>*/ []; |
| +List<T> parseList<T>(StringScanner scanner, T parseElement()) { |
| + var result = <T> []; |
|
Nate Bosch
2017/07/31 17:06:52
Have you run dartfmt? I wouldn't expect the space
keertip
2017/07/31 17:33:27
Looks like it did not. Done.
|
| // Consume initial empty values. |
| while (scanner.scan(",")) { |