Repeat with current number should become available by using {n}, {n,m} , {,n}, {n,}
Details
Diff Detail
Event Timeline
utils/FileCheck/FileCheck.cpp | ||
---|---|---|
240 | Comment for what this is doing (skipping to the end of a sequence of consecutive }s.) | |
254 | Putting this in FileCheck is a bad hack. It is the wrong place to make a regexp syntax change. Either users can simply use {0,N}, or we could change our regexp implementation to support {,N}. |
utils/FileCheck/FileCheck.cpp | ||
---|---|---|
254 | Ok, I'll remove this and it will be able to use only {0,n} in such cases. In my opinion, it's a great idea to change regexp library, because current library is quite old and has unsupported useful regexp features. |
Comment for what this is doing (skipping to the end of a sequence of consecutive }s.)