Parse function breakpoints
| 6 | |
| 7 | // Parse function breakpoints |
| 8 | pub(crate) trait ParseFunction { |
| 9 | fn parse(&self) -> Vec<FunctionDef>; |
| 10 | } |
| 11 | |
| 12 | // Entry point of function breaking parsing |
| 13 | impl ParseFunction for syn::Item { |
nothing calls this directly
no outgoing calls
no test coverage detected