forked from AbleScript/ablescript
Added emoji support for identifiers
This commit is contained in:
parent
5c0e89e38e
commit
167a5077df
|
@ -126,7 +126,7 @@ pub enum Token {
|
|||
Char(char),
|
||||
|
||||
/// 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())]
|
||||
Identifier(String),
|
||||
|
||||
|
|
Loading…
Reference in a new issue