removed \ from idents

This commit is contained in:
Erin 2022-04-02 20:39:48 +02:00 committed by ondra05
parent ec48508ba7
commit 45007e7d2b

View file

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