Displaying 2 results from an estimated 2 matches for "one_or_more".
2016 Sep 12
3
RFC: FileCheck Enhancements
Hi,
I have question again about modifiers for pattern parameters.
Vedant suggested such way.
> CHECK-DEFINE-PATTERN: one_or_more(x): x {{+}}
But I have some doubts. This should be equal to x+. This approach differs from standard one.
In FileCheck I can write
CHECK: {{x|y}}{{something}}
This line will be equal to regex (x|y)(something).
But if I use suggested approach and write same string in pattern CHECK-DEFINE-PATTERN:...
2016 Sep 01
2
RFC: FileCheck Enhancements
Yes, I now understand what you suggested.
> CHECK-DEFINE-PATTERN: car(make, model, year): {{Found a }} make model {{, from }} year
But I think that in pattern I should show that I use parameter. I thought that patterns can also be simple strings. All strings should be regexs in pattern and parameters can't be used in pattern in your example. But I want to use parameters in regexs. For