mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-28 21:58:28 +00:00
Remove unnecessary options
This commit is contained in:
@@ -177,7 +177,6 @@ proc asSeq*(pattern: Captures, default: string = nil): seq[string] =
|
||||
let Options: Table[string, int] = {
|
||||
"8" : pcre.UTF8,
|
||||
"9" : pcre.NEVER_UTF,
|
||||
"?" : pcre.NO_UTF8_CHECK,
|
||||
"A" : pcre.ANCHORED,
|
||||
# "C" : pcre.AUTO_CALLOUT, unsuported XXX
|
||||
"E" : pcre.DOLLAR_ENDONLY,
|
||||
@@ -185,7 +184,6 @@ let Options: Table[string, int] = {
|
||||
"i" : pcre.CASELESS,
|
||||
"m" : pcre.MULTILINE,
|
||||
"N" : pcre.NO_AUTO_CAPTURE,
|
||||
"O" : pcre.NO_AUTO_POSSESS,
|
||||
"s" : pcre.DOTALL,
|
||||
"U" : pcre.UNGREEDY,
|
||||
"u" : pcre.UTF8,
|
||||
|
||||
@@ -9,7 +9,7 @@ suite "Test NRE initialization":
|
||||
test "correct options":
|
||||
expect(SyntaxError): # ValueError would be bad
|
||||
discard initRegex("[0-9]+",
|
||||
"89?AEfimNOsUWXxY<any><anycrlf><cr><crlf><lf><bsr_anycrlf><bsr_unicode><js>")
|
||||
"89AEfimNsUWXxY<any><anycrlf><cr><crlf><lf><bsr_anycrlf><bsr_unicode><js>")
|
||||
|
||||
test "incorrect options":
|
||||
expect(KeyError): discard initRegex("[0-9]+", "a")
|
||||
|
||||
Reference in New Issue
Block a user