| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-06-10 | Don't suggest using \r in raw strings | Igor Matuszewski | -1/+2 | |
| 2019-06-09 | Use char byte calculation using existing iterator | Igor Matuszewski | -11/+13 | |
| 2019-06-09 | Actually translate CRLF in raw byte strings and unify unescape impl | Igor Matuszewski | -20/+44 | |
| 2019-06-09 | Translate CRLF -> LF in raw (byte) strings | Igor Matuszewski | -30/+14 | |
| 2019-06-08 | Prohibit bare CRs in raw byte strings | Igor Matuszewski | -0/+24 | |
| 2019-06-08 | Validate and transcribe raw strings via unescape module | Igor Matuszewski | -0/+22 | |
| 2019-06-08 | Clean up minor bits | Igor Matuszewski | -1/+1 | |
| 2019-05-02 | introduce unescape module | Aleksey Kladov | -0/+515 | |
| Currently, we deal with escape sequences twice: once when we lex a string, and a second time when we unescape literals. This PR aims to remove this duplication, by introducing a new `unescape` mode as a single source of truth for character escaping rules | ||||
