format::desktop_entry: Add untested parsing for integer values

This commit is contained in:
Sasha Koshka 2024-10-21 17:36:40 -04:00
parent 9e4d7e4ae4
commit fc0cab93bc
2 changed files with 33 additions and 1 deletions

View File

@ -12,6 +12,7 @@ export type syntaxerr = !(
invalid_escape | invalid_escape |
invalid_boolean | invalid_boolean |
invalid_numeric | invalid_numeric |
invalid_integer |
expected_single); expected_single);
// Returned when a malformed group header is encountered while parsing. // Returned when a malformed group header is encountered while parsing.