((annotations, kind): (Vec<Annotation>, StmtKind), span: Span)
| 112 | } |
| 113 | |
| 114 | fn into_stmt((annotations, kind): (Vec<Annotation>, StmtKind), span: Span) -> Stmt { |
| 115 | Stmt { |
| 116 | kind, |
| 117 | span: Some(span), |
| 118 | annotations, |
| 119 | doc_comment: None, |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | fn doc_comment<'a, I>() -> impl Parser<'a, I, String, ParserError<'a>> + Clone |
| 124 | where |
no outgoing calls
no test coverage detected