(self)
| 321 | return Sum(sumlist, self._parse_optional_attributes()) |
| 322 | |
| 323 | def _parse_product(self): |
| 324 | return Product(self._parse_fields(), self._parse_optional_attributes()) |
| 325 | |
| 326 | def _parse_fields(self): |
| 327 | fields = [] |
no test coverage detected