(&self, ranged: T)
| 638 | } |
| 639 | |
| 640 | fn src_text<T>(&self, ranged: T) -> &'src str |
| 641 | where |
| 642 | T: Ranged, |
| 643 | { |
| 644 | &self.source[ranged.range()] |
| 645 | } |
| 646 | |
| 647 | /// Parses a list of elements into a thin vector where each element is parsed using |
| 648 | /// the given `parse_element` function. |
no test coverage detected