No underscore!

pull/7/head
ondra05 2022-04-16 22:06:37 +02:00
parent 8234a9d9fe
commit e1f7533b2d
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ pub enum Token {
Integer(isize),
/// An identifier
#[regex(r"[\p{XID_Start}|_][\p{XID_Continue}]*", get_ident)]
#[regex(r"\p{XID_Start}[\p{XID_Continue}]*", get_ident)]
Identifier(String),
#[regex(r"owo .*")]