Skip to content

Commit

Permalink
allow parsing escaped symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasKl committed Dec 10, 2023
1 parent 8d7d632 commit cf10a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wal/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
scoped_symbol : "~" base_symbol
grouped_symbol : "#" base_symbol
!base_symbol : /[a-zA-Z_\.][=$\*\/>:\.\-_\?=%§!\\~+<>|,\w]*/
!base_symbol : /[a-zA-Z_\.][=$\*\/>:\.\-_\?=%§!\\~+<>|,\w]*/ | /\\\S+/
bit_symbol : sexpr_strict "[" sexpr "]"
sliced_symbol : sexpr_strict "[" sexpr ":" sexpr "]"
Expand Down

0 comments on commit cf10a30

Please sign in to comment.