Extracts all statements from the input stream.
(input: &mut dyn io::Read)
| 2034 | |
| 2035 | /// Extracts all statements from the input stream. |
| 2036 | pub(crate) fn parse(input: &mut dyn io::Read) -> StatementIter<'_> { |
| 2037 | StatementIter { parser: Parser::from(input) } |
| 2038 | } |
| 2039 | |
| 2040 | #[cfg(test)] |
| 2041 | mod tests { |
no outgoing calls
no test coverage detected