gitextract_tvdvmii5/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bench/ │ ├── README.md │ ├── bench.nim │ └── input-text.txt ├── docs/ │ ├── index.html │ └── regex/ │ └── .keep ├── regex.nimble ├── src/ │ ├── regex/ │ │ ├── common.nim │ │ ├── compiler.nim │ │ ├── dotgraph.nim │ │ ├── exptransformation.nim │ │ ├── exptype.nim │ │ ├── litopt.nim │ │ ├── nfa.nim │ │ ├── nfafindall.nim │ │ ├── nfafindall2.nim │ │ ├── nfamacro.nim │ │ ├── nfamatch.nim │ │ ├── nfamatch2.nim │ │ ├── nfatype.nim │ │ ├── nodematch.nim │ │ ├── oldregex.nim │ │ ├── parser.nim │ │ ├── scanner.nim │ │ └── types.nim │ └── regex.nim └── tests/ ├── tests.nim ├── tests2.nim └── tests_misc.nim