| 343 | |
| 344 | #[derive(Debug, Clone)] |
| 345 | struct Query { |
| 346 | patterns: Vec<Pattern>, |
| 347 | conditions: Vec<String>, |
| 348 | get_variables: Vec<String>, |
| 349 | } |
| 350 | fn variable(input: &str) -> IResult<&str, &str> { |
| 351 | preceded(char('$'), identifier)(input) |
| 352 | } |
no outgoing calls
no test coverage detected