From 45007e7d2b9de3cdc1fdcaaba9625ca73821fcbc Mon Sep 17 00:00:00 2001 From: Erin Date: Sat, 2 Apr 2022 20:39:48 +0200 Subject: [PATCH] removed \ from idents --- ablescript/src/lexer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ablescript/src/lexer.rs b/ablescript/src/lexer.rs index 6a6df61b..4c0e54da 100644 --- a/ablescript/src/lexer.rs +++ b/ablescript/src/lexer.rs @@ -120,7 +120,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 .*")]