You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see there is basic support for group but no some more complex features like Perl flag for named group and non-capturing group. It would be good if there is support on that.
I took a look of the code and seems there is no extra attributes for Expr (expression) since that is union(enum). Perhaps it would be a good idea to have new struct Group out such that there could be different attributes like name and captured bool flag to determine the type of that, for further expression handling?
- Add logic to check the group expression modifiers
- Implement non-capturing group logic which return `Patch` without
changing the capture parts responsible for capturing group
Resolve: tiehuis#34
I see there is basic support for group but no some more complex features like Perl flag for named group and non-capturing group. It would be good if there is support on that.
I took a look of the code and seems there is no extra attributes for
Expr
(expression) since that isunion(enum)
. Perhaps it would be a good idea to have new structGroup
out such that there could be different attributes likename
andcaptured
bool flag to determine the type of that, for further expression handling?Reference:
The text was updated successfully, but these errors were encountered: