Keywords that are be the first token in a statement and (if so) dictate how the rest of the statement is parsed.
pub const TopLevelKeywords = enum
pub const TopLevelKeywords = enum {
language,
version,
characteristics,
stringtable,
pub const map = std.StaticStringMapWithEql(
TopLevelKeywords,
std.static_string_map.eqlAsciiIgnoreCase,
).initComptime(.{
.{ "LANGUAGE", .language },
.{ "VERSION", .version },
.{ "CHARACTERISTICS", .characteristics },
.{ "STRINGTABLE", .stringtable },
});
}