(char: char)
| 103 | } |
| 104 | |
| 105 | fn ctrl<'a, I>(char: char) -> impl Parser<'a, I, (), ParserError<'a>> + Clone |
| 106 | where |
| 107 | I: Input<'a, Token = lr::Token, Span = Span> + BorrowInput<'a>, |
| 108 | { |
| 109 | select_ref! { |
| 110 | lr::Token { kind: TokenKind::Control(c), .. } if *c == char => (), |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | fn into_stmt((annotations, kind): (Vec<Annotation>, StmtKind), span: Span) -> Stmt { |
| 115 | Stmt { |
no outgoing calls
no test coverage detected