Returns a list of syntax errors found during parsing.
(&self)
| 251 | |
| 252 | /// Returns a list of syntax errors found during parsing. |
| 253 | pub fn errors(&self) -> &[ParseError] { |
| 254 | &self.errors |
| 255 | } |
| 256 | |
| 257 | /// Consumes the [`Parsed`] output and returns the contained syntax node. |
| 258 | pub fn into_syntax(self) -> T { |
no outgoing calls