(self)
| 340 | return fields |
| 341 | |
| 342 | def _parse_optional_fields(self): |
| 343 | if self.cur_token.kind == TokenKind.LParen: |
| 344 | return self._parse_fields() |
| 345 | else: |
| 346 | return None |
| 347 | |
| 348 | def _parse_optional_attributes(self): |
| 349 | if self._at_keyword('attributes'): |
no test coverage detected