mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Fixed support for '\cX' regexps: CTRL added to set of possible chars.
This commit is contained in:
@@ -121,6 +121,7 @@ public interface RegExpTT {
|
||||
ESC_CTRL_CHARACTER,
|
||||
ESC_CHARACTER,
|
||||
CTRL_CHARACTER,
|
||||
CTRL,
|
||||
UNICODE_CHAR,
|
||||
HEX_CHAR, BAD_HEX_VALUE,
|
||||
OCT_CHAR, BAD_OCT_VALUE,
|
||||
|
||||
@@ -603,6 +603,22 @@
|
||||
<pattern>\Q\j\E</pattern>
|
||||
<expected>OK</expected>
|
||||
</test>
|
||||
<test>
|
||||
<pattern>\c0</pattern>
|
||||
<expected>OK</expected>
|
||||
</test>
|
||||
<test>
|
||||
<pattern>\C-0</pattern>
|
||||
<expected>OK</expected>
|
||||
</test>
|
||||
<test>
|
||||
<pattern>\M-0</pattern>
|
||||
<expected>OK</expected>
|
||||
</test>
|
||||
<test>
|
||||
<pattern>\M-\C-0</pattern>
|
||||
<expected>OK</expected>
|
||||
</test>
|
||||
</escapes>
|
||||
|
||||
<anchors>
|
||||
|
||||
Reference in New Issue
Block a user