fix/schema: fix string literals

This commit is contained in:
mae
2026-01-28 19:52:13 -06:00
parent dc87bef1c2
commit 73fd1dd90d
12 changed files with 5285 additions and 3720 deletions

View File

@@ -138,7 +138,8 @@ var TokMap = TokenMap{
typeMap: []string{
"INVALID",
"␚",
"string",
"raw_string",
"interpreted_string",
"rune",
"int",
"float",
@@ -150,16 +151,17 @@ var TokMap = TokenMap{
},
idMap: map[string]Type{
"INVALID": 0,
"␚": 1,
"string": 2,
"rune": 3,
"int": 4,
"float": 5,
"imaginary": 6,
"name": 7,
"(": 8,
")": 9,
".": 10,
"INVALID": 0,
"␚": 1,
"raw_string": 2,
"interpreted_string": 3,
"rune": 4,
"int": 5,
"float": 6,
"imaginary": 7,
"name": 8,
"(": 9,
")": 10,
".": 11,
},
}