feat: add escape sequence of ESC

as an unreleased feature
This commit is contained in:
ToruNiina
2022-03-16 22:39:52 +09:00
parent dcfe39a783
commit dde351ea40
3 changed files with 19 additions and 0 deletions

View File

@@ -133,6 +133,9 @@ using lex_escape_seq_char = either<character<'"'>, character<'\\'>,
character<'b'>, character<'f'>,
character<'n'>, character<'r'>,
character<'t'>,
#ifdef TOML11_USE_UNRELEASED_TOML_FEATURES
character<'e'>, // ESC (0x1B)
#endif
lex_escape_unicode_short,
lex_escape_unicode_long
>;