pub fn bare_token<'src>() -> impl Parser<'src, &'src str, String, Err<Simple<'src, char>>> + Clone
Parse an unquoted token without wrapping it in BareToken.
BareToken
Unlike ident, this accepts @ because a resolver may need to interpret the token later. Quotes, pattern metacharacters, whitespace, and structural delimiters are rejected.
ident
@