Implement PCRE Matching (prefer left-branch) #2

Merged
Rockingcool merged 48 commits from implementPCREMatchingRules into master 4 weeks ago
Owner
There is no content yet.
Rockingcool added 48 commits 4 weeks ago
cca8c7cda2 Got rid of transitions parameter, changed how kleene state is processed
I replaced the transition parameter for nfaState, replacing it with a
single nfaState pointer. This is because any non-alternation state will
only have one next state, so the map was just added complexity.

I changed alternation processing - instead of having their own dedicated
fields, they just use the new 'next' parameter, and another one called
'splitState'.

I also changed the kleene state processing to remove the unecessary
empty state in the right-side alternation (it actually messed up my
matching).
Rockingcool merged commit 662527c478 into master 4 weeks ago
The pull request has been merged as 662527c478.
You can also view command line instructions.

Step 1:

From your project repository, check out a new branch and test the changes.
git checkout -b implementPCREMatchingRules master
git pull origin implementPCREMatchingRules

Step 2:

Merge the changes and update on Gitea.
git checkout master
git merge --no-ff implementPCREMatchingRules
git push origin master
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Rockingcool/kleingrep#2
Loading…
There is no content yet.