1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

regex: fix dot char problems on groups with * (#13333)

This commit is contained in:
penguindark
2022-02-01 12:49:37 +01:00
committed by GitHub
parent 310969a057
commit 7c1b249da0
2 changed files with 10 additions and 0 deletions

View File

@ -160,6 +160,11 @@ match_test_suite = [
TestItem{"a", r"\S+",0,1},
TestItem{"aaaa", r"\S+",0,4},
TestItem{"aaaa ", r"\S+",0,4},
// multiple dot char
TestItem{"aba", r"a*(b*)*a",0,3},
TestItem{"/*x*/", r"/\**(.*)\**/",0,5},
TestItem{"/*x*/", r"/*(.*)*/",0,5},
]
)