(self)
| 346 | return None |
| 347 | |
| 348 | def _parse_optional_attributes(self): |
| 349 | if self._at_keyword('attributes'): |
| 350 | self._advance() |
| 351 | return self._parse_fields() |
| 352 | else: |
| 353 | return None |
| 354 | |
| 355 | def _parse_optional_field_quantifier(self): |
| 356 | quantifiers = [] |
no test coverage detected