Skip to content

Commit

Permalink
supported /
Browse files Browse the repository at this point in the history
  • Loading branch information
sahithibanda01 committed Aug 27, 2024
1 parent a97f47b commit f290969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit f290969

Please sign in to comment.