aboutsummaryrefslogtreecommitdiff
path: root/core/text/regex/parser/doc.odin
blob: f518e518de607dabbf1362c199d97f0fc6020126 (plain)
1
2
3
4
5
6
7
8
9
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