Returns `true` if the parsed source code does not contain any [`ParseError`]s *or [`UnsupportedSyntaxError`]s. See [`Parsed::has_valid_syntax`] for a version specific to [`ParseError`]s.
(&self)
| 445 | /// |
| 446 | /// See [`Parsed::has_valid_syntax`] for a version specific to [`ParseError`]s. |
| 447 | pub fn has_no_syntax_errors(&self) -> bool { |
| 448 | self.has_valid_syntax() && self.unsupported_syntax_errors.is_empty() |
| 449 | } |
| 450 | |
| 451 | /// Returns `true` if the parsed source code contains any [`ParseError`]s *or* |
| 452 | /// [`UnsupportedSyntaxError`]s. |
no test coverage detected