Skip to content

Commit d3656cf

Browse files
authored
Merge pull request #69 from coreruleset/fix/backslash-in-operator
fix: backslash in operator values
2 parents 284155e + ea2a225 commit d3656cf

5 files changed

Lines changed: 2007 additions & 1940 deletions

File tree

g4/SecLangLexer.g4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,8 +1129,8 @@ QUOTE_STRING_MODE
11291129
;
11301130
11311131
WS_STRING_MODE
1132-
: WS -> skip
1133-
;
1132+
: ' '+ -> skip
1133+
;
11341134
11351135
STRING
11361136
: (('\\"') | ~([" ])) (('\\"')|~('"'))* -> popMode

0 commit comments

Comments
 (0)