Cleanup string handling in syntax highlighting

This commit is contained in:
Lukas Wirth 2025-03-01 17:44:12 +01:00
parent 9200f77068
commit 8f319240b4
4 changed files with 27 additions and 58 deletions

View file

@ -438,9 +438,9 @@ MacroExpr =
Literal =
Attr* value:(
'@int_number' | '@float_number'
| '@string' | '@raw_string'
| '@byte_string' | '@raw_byte_string'
| '@c_string' | '@raw_c_string'
| '@string'
| '@byte_string'
| '@c_string'
| '@char' | '@byte'
| 'true' | 'false'
)