(&mut self)
| 211 | } |
| 212 | |
| 213 | pub fn parse_path(&mut self) -> Result<PathBuf> { |
| 214 | let path = self.consume_token_until("\n")?; |
| 215 | let path = PathBuf::from_str(path)?; |
| 216 | Ok(path) |
| 217 | } |
| 218 | |
| 219 | pub fn remain(&self) -> &str { |
| 220 | self.input |
nothing calls this directly
no test coverage detected