Added emoji support for identifiers

This commit is contained in:
Erin 2022-07-02 00:47:09 +02:00 committed by ondra05
parent 5c0e89e38e
commit 167a5077df

View file

@ -126,7 +126,7 @@ pub enum Token {
Char(char), Char(char),
/// An identifier /// An identifier
#[regex(r"\p{XID_Start}[\p{XID_Continue}]+", get_ident)] #[regex(r"[\p{XID_Start}|\p{Emoji}][\p{XID_Continue}|\p{Emoji}]+", get_ident)]
#[token("and ", |_| "and".to_owned())] #[token("and ", |_| "and".to_owned())]
Identifier(String), Identifier(String),