aboutsummaryrefslogtreecommitdiff
path: root/core/text/regex/virtual_machine/util.odin
Commit message (Collapse)AuthorAgeFilesLines
* Change Odin's LICENSE to zlib from BSD 3-clausegingerBill2025-10-281-1/+1
| | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
* Fix multiline RegEx iterationFeoramund2025-05-261-0/+2
| | | | | | | | | | In `.Multiline` mode: - `^` is now defined to assert the start of the string or that a "\n" or "\r" rune was parsed on last VM dispatch. - `$` is now defined to consume a newline sequence of "\n", "\r", or "\r\n" or to assert the end of the string.
* Add explicit license info to `core:text/regex`Feoramund2024-08-041-0/+8
|
* Add `core:text/regex`Feoramund2024-07-221-0/+73