Add core:text/regex

This commit is contained in:
Feoramund
2024-07-22 14:25:12 -04:00
parent ccf8b2764d
commit cb0704d51c
16 changed files with 3700 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
/*
package regex_parser implements a Pratt parser, also known as a Top-Down
Operator Precedence parser, for parsing tokenized regular expression patterns.
References:
- https://dl.acm.org/doi/10.1145/512927.512931
- https://tdop.github.io/
- http://crockford.com/javascript/tdop/tdop.html
*/
package regex_parser