Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-28 | Refactor to work on `char`s | Titus Wormer | 1 | -125/+0 | |
Previously, a custom char implementation was used. This was easier to work with, as sometimes “virtual” characters are injected, or characters are ignored. This replaces that with working on actual `char`s. In the hope of in the future working on `u8`s, even. This simplifies the state machine somewhat, as only `\n` is fed, regardless of whether it was a CRLF, CR, or LF. It also feeds `' '` instead of virtual spaces. The BOM, if present, is now available as a `ByteOrderMark` event. | |||||
2022-07-22 | Refactor to remove unneeded tuples in every states | Titus Wormer | 1 | -1/+1 | |
2022-07-20 | Refactor to improve allocation around strings | Titus Wormer | 1 | -18/+17 | |
2022-07-07 | Refactor to use `char::REPLACEMENT_CHARACTER` | Titus Wormer | 1 | -1/+1 | |
2022-07-05 | Refactor code style | Titus Wormer | 1 | -0/+126 | |