From f290969484e2b34ced354f3c5f8d76f1baa5794c Mon Sep 17 00:00:00 2001 From: sahithiharness Date: Tue, 27 Aug 2024 13:01:51 +0530 Subject: [PATCH] supported / --- parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.go b/parser.go index 1a9e034..63742db 100644 --- a/parser.go +++ b/parser.go @@ -96,7 +96,7 @@ loop: case '_': default: // variable name should match [A-Za-z0-9_.] - if unicode.IsLetter(rchar) || unicode.IsNumber(rchar) || rchar == '.' || rchar == '-' { + if unicode.IsLetter(rchar) || unicode.IsNumber(rchar) || rchar == '.' || rchar == '-' || rchar == '/' { continue }