You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regexp/syntax: fix handling of \Q...\E
It's not a group: must handle the inside as a sequence of literal chars,
not a single literal string.
That is, \Qab\E+ is the same as ab+, not (ab)+.
Test output is parse/dump of \Qab\E+ expected cat{lit{a}plus{lit{b}}}, got plus{str{ab}} expected:<[cat{lit{a}plus{lit{b}]}}> but was:<[plus{str{ab]}}>