(i: &str)
| 228 | } |
| 229 | |
| 230 | fn parse_string_term(i: &str) -> IResult<&str, Term, Error> { |
| 231 | let (i, s) = parse_string(i)?; |
| 232 | Ok((i, Term::Str(s))) |
| 233 | } |
| 234 | |
| 235 | /// Parse a variable token: starts with uppercase or underscore, followed by alphanums or `_`. |
| 236 | /// Example: `X`, `User42`, `_foo`. |
nothing calls this directly
no test coverage detected