Parse parameter or catalog path (helper function)
(tokens: &[Token])
| 3442 | |
| 3443 | /// Parse parameter or catalog path (helper function) |
| 3444 | fn parameter_or_catalog_path(tokens: &[Token]) -> IResult<&[Token], CatalogPath> { |
| 3445 | // For simplicity, just parse as catalog path for now |
| 3446 | catalog_path(tokens) |
| 3447 | } |
| 3448 | |
| 3449 | /// Expect a specific token |
| 3450 | fn expect_token(expected: Token) -> impl Fn(&[Token]) -> IResult<&[Token], Token> { |
nothing calls this directly
no test coverage detected