| Index: utils/pub/yaml/parser.dart
|
| diff --git a/utils/pub/yaml/parser.dart b/utils/pub/yaml/parser.dart
|
| index bfd1effcd25b3a94dcb8f80a98712a3742711229..f19ab7865a28699edf513a5be0edc4eba0cfcdf8 100644
|
| --- a/utils/pub/yaml/parser.dart
|
| +++ b/utils/pub/yaml/parser.dart
|
| @@ -1448,14 +1448,16 @@ class _Parser {
|
| }
|
|
|
| // 167
|
| - void l_stripEmpty(int indent) => captureAs('', () {
|
| - zeroOrMore(() => transaction(() {
|
| - if (!truth(s_indentLessThanOrEqualTo(indent))) return false;
|
| - return b_nonContent();
|
| - }));
|
| - zeroOrOne(() => l_trailComments(indent));
|
| - return true;
|
| - });
|
| + void l_stripEmpty(int indent) {
|
| + captureAs('', () {
|
| + zeroOrMore(() => transaction(() {
|
| + if (!truth(s_indentLessThanOrEqualTo(indent))) return false;
|
| + return b_nonContent();
|
| + }));
|
| + zeroOrOne(() => l_trailComments(indent));
|
| + return true;
|
| + });
|
| + }
|
|
|
| // 168
|
| void l_keepEmpty(int indent) {
|
|
|