(&mut self, stop: KindSet)
| 134 | |
| 135 | #[inline] |
| 136 | pub fn set_stop(&mut self, stop: KindSet) -> KindSet { |
| 137 | let old = self.stop; |
| 138 | self.stop = stop; |
| 139 | old |
| 140 | } |
| 141 | |
| 142 | pub fn parse_entirely<T: Parse<'a> + ToCursors>(&mut self) -> ParserReturn<'a, T> { |
| 143 | let output = match T::parse(self) { |